Replicated code from Jenny Trickey’s repo here
Summaries generated: 2025 Jun 06 15:22 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)
# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
# ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)
# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets,
paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported
# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
Source some external functions
source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))
# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
dets <- readRDS(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_016/CalCurCEAS_2024_016_Filtered.rdata
if (file.exists(detsFiltFile)){
detsFilt <- readRDS(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_016/CalCurCEAS_2024_016_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))
Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_016/CalCurCEAS_2024_016_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_016/CalCurCEAS_2024_016_ch1.rdata
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 8322 out of 8322 missing binary files.
## Updating files in events...
## | | | 0% | | | 1% | |= | 1% | |= | 2% | |== | 2% | |== | 3% | |=== | 3% | |=== | 4% | |==== | 4% | |==== | 5% | |===== | 5% | |===== | 6% | |===== | 7% | |====== | 7% | |====== | 8% | |======= | 8% | |======= | 9% | |======== | 9% | |======== | 10% | |========= | 10% | |========= | 11% | |========= | 12% | |========== | 12% | |========== | 13% | |=========== | 13% | |=========== | 14% | |============ | 14% | |============ | 15% | |============= | 15% | |============= | 16% | |============== | 16% | |============== | 17% | |============== | 18% | |=============== | 18% | |=============== | 19% | |================ | 19% | |================ | 20% | |================= | 20% | |================= | 21% | |================== | 21% | |================== | 22% | |================== | 23% | |=================== | 23% | |=================== | 24% | |==================== | 24% | |==================== | 25% | |===================== | 25% | |===================== | 26% | |====================== | 26% | |====================== | 27% | |======================= | 27% | |======================= | 28% | |======================= | 29% | |======================== | 29% | |======================== | 30% | |========================= | 30% | |========================= | 31% | |========================== | 31% | |========================== | 32% | |=========================== | 32% | |=========================== | 33% | |=========================== | 34% | |============================ | 34% | |============================ | 35% | |============================= | 35% | |============================= | 36% | |============================== | 36% | |============================== | 37% | |=============================== | 37% | |=============================== | 38% | |================================ | 38% | |================================ | 39% | |================================ | 40% | |================================= | 40% | |================================= | 41% | |================================== | 41% | |================================== | 42% | |=================================== | 42% | |=================================== | 43% | |==================================== | 43% | |==================================== | 44% | |==================================== | 45% | |===================================== | 45% | |===================================== | 46% | |====================================== | 46% | |====================================== | 47% | |======================================= | 47% | |======================================= | 48% | |======================================== | 48% | |======================================== | 49% | |========================================= | 49% | |========================================= | 50% | |========================================= | 51% | |========================================== | 51% | |========================================== | 52% | |=========================================== | 52% | |=========================================== | 53% | |============================================ | 53% | |============================================ | 54% | |============================================= | 54% | |============================================= | 55% | |============================================== | 55% | |============================================== | 56% | |============================================== | 57% | |=============================================== | 57% | |=============================================== | 58% | |================================================ | 58% | |================================================ | 59% | |================================================= | 59% | |================================================= | 60% | |================================================== | 60% | |================================================== | 61% | |================================================== | 62% | |=================================================== | 62% | |=================================================== | 63% | |==================================================== | 63% | |==================================================== | 64% | |===================================================== | 64% | |===================================================== | 65% | |====================================================== | 65% | |====================================================== | 66% | |======================================================= | 66% | |======================================================= | 67% | |======================================================= | 68% | |======================================================== | 68% | |======================================================== | 69% | |========================================================= | 69% | |========================================================= | 70% | |========================================================== | 70% | |========================================================== | 71% | |=========================================================== | 71% | |=========================================================== | 72% | |=========================================================== | 73% | |============================================================ | 73% | |============================================================ | 74% | |============================================================= | 74% | |============================================================= | 75% | |============================================================== | 75% | |============================================================== | 76% | |=============================================================== | 76% | |=============================================================== | 77% | |================================================================ | 77% | |================================================================ | 78% | |================================================================ | 79% | |================================================================= | 79% | |================================================================= | 80% | |================================================================== | 80% | |================================================================== | 81% | |=================================================================== | 81% | |=================================================================== | 82% | |==================================================================== | 82% | |==================================================================== | 83% | |==================================================================== | 84% | |===================================================================== | 84% | |===================================================================== | 85% | |====================================================================== | 85% | |====================================================================== | 86% | |======================================================================= | 86% | |======================================================================= | 87% | |======================================================================== | 87% | |======================================================================== | 88% | |========================================================================= | 88% | |========================================================================= | 89% | |========================================================================= | 90% | |========================================================================== | 90% | |========================================================================== | 91% | |=========================================================================== | 91% | |=========================================================================== | 92% | |============================================================================ | 92% | |============================================================================ | 93% | |============================================================================= | 93% | |============================================================================= | 94% | |============================================================================= | 95% | |============================================================================== | 95% | |============================================================================== | 96% | |=============================================================================== | 96% | |=============================================================================== | 97% | |================================================================================ | 97% | |================================================================================ | 98% | |================================================================================= | 98% | |================================================================================= | 99% | |==================================================================================| 99% | |==================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 8322 out of 8322 missing binary files.
## Updating files in events...
## | | | 0% | | | 1% | |= | 1% | |= | 2% | |== | 2% | |== | 3% | |=== | 3% | |=== | 4% | |==== | 4% | |==== | 5% | |===== | 5% | |===== | 6% | |===== | 7% | |====== | 7% | |====== | 8% | |======= | 8% | |======= | 9% | |======== | 9% | |======== | 10% | |========= | 10% | |========= | 11% | |========= | 12% | |========== | 12% | |========== | 13% | |=========== | 13% | |=========== | 14% | |============ | 14% | |============ | 15% | |============= | 15% | |============= | 16% | |============== | 16% | |============== | 17% | |============== | 18% | |=============== | 18% | |=============== | 19% | |================ | 19% | |================ | 20% | |================= | 20% | |================= | 21% | |================== | 21% | |================== | 22% | |================== | 23% | |=================== | 23% | |=================== | 24% | |==================== | 24% | |==================== | 25% | |===================== | 25% | |===================== | 26% | |====================== | 26% | |====================== | 27% | |======================= | 27% | |======================= | 28% | |======================= | 29% | |======================== | 29% | |======================== | 30% | |========================= | 30% | |========================= | 31% | |========================== | 31% | |========================== | 32% | |=========================== | 32% | |=========================== | 33% | |=========================== | 34% | |============================ | 34% | |============================ | 35% | |============================= | 35% | |============================= | 36% | |============================== | 36% | |============================== | 37% | |=============================== | 37% | |=============================== | 38% | |================================ | 38% | |================================ | 39% | |================================ | 40% | |================================= | 40% | |================================= | 41% | |================================== | 41% | |================================== | 42% | |=================================== | 42% | |=================================== | 43% | |==================================== | 43% | |==================================== | 44% | |==================================== | 45% | |===================================== | 45% | |===================================== | 46% | |====================================== | 46% | |====================================== | 47% | |======================================= | 47% | |======================================= | 48% | |======================================== | 48% | |======================================== | 49% | |========================================= | 49% | |========================================= | 50% | |========================================= | 51% | |========================================== | 51% | |========================================== | 52% | |=========================================== | 52% | |=========================================== | 53% | |============================================ | 53% | |============================================ | 54% | |============================================= | 54% | |============================================= | 55% | |============================================== | 55% | |============================================== | 56% | |============================================== | 57% | |=============================================== | 57% | |=============================================== | 58% | |================================================ | 58% | |================================================ | 59% | |================================================= | 59% | |================================================= | 60% | |================================================== | 60% | |================================================== | 61% | |================================================== | 62% | |=================================================== | 62% | |=================================================== | 63% | |==================================================== | 63% | |==================================================== | 64% | |===================================================== | 64% | |===================================================== | 65% | |====================================================== | 65% | |====================================================== | 66% | |======================================================= | 66% | |======================================================= | 67% | |======================================================= | 68% | |======================================================== | 68% | |======================================================== | 69% | |========================================================= | 69% | |========================================================= | 70% | |========================================================== | 70% | |========================================================== | 71% | |=========================================================== | 71% | |=========================================================== | 72% | |=========================================================== | 73% | |============================================================ | 73% | |============================================================ | 74% | |============================================================= | 74% | |============================================================= | 75% | |============================================================== | 75% | |============================================================== | 76% | |=============================================================== | 76% | |=============================================================== | 77% | |================================================================ | 77% | |================================================================ | 78% | |================================================================ | 79% | |================================================================= | 79% | |================================================================= | 80% | |================================================================== | 80% | |================================================================== | 81% | |=================================================================== | 81% | |=================================================================== | 82% | |==================================================================== | 82% | |==================================================================== | 83% | |==================================================================== | 84% | |===================================================================== | 84% | |===================================================================== | 85% | |====================================================================== | 85% | |====================================================================== | 86% | |======================================================================= | 86% | |======================================================================= | 87% | |======================================================================== | 87% | |======================================================================== | 88% | |========================================================================= | 88% | |========================================================================= | 89% | |========================================================================= | 90% | |========================================================================== | 90% | |========================================================================== | 91% | |=========================================================================== | 91% | |=========================================================================== | 92% | |============================================================================ | 92% | |============================================================================ | 93% | |============================================================================= | 93% | |============================================================================= | 94% | |============================================================================= | 95% | |============================================================================== | 95% | |============================================================================== | 96% | |=============================================================================== | 96% | |=============================================================================== | 97% | |================================================================================ | 97% | |================================================================================ | 98% | |================================================================================= | 98% | |================================================================================= | 99% | |==================================================================================| 99% | |==================================================================================| 100%
Updated file paths to binaries in databases for F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_016/CalCurCEAS_2024_016_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_016/CalCurCEAS_2024_016_ch1.rdata
To be used for manual scoring based on report figures.
# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents),
species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))
# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}
# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]
# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
1820 events (files) in drift. 954 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
refSpecs <- NULL
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Loop through each detection event (n = 954) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- PAMpal::events(detsFilt)
eventUID <- names(eventList)[iEvent]
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
# keep this in evTable
evTable$keep[evTable$id == eventUID] <- TRUE
evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak,
na.rm = TRUE)
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
# wl <- whistleSummary(detsFilt, eventUID)
#
# cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
# cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
if (any(!is.na(cl$snr))){
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = params$channelNum, norm = TRUE,
noise = TRUE, sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
if (length(refSpecs) > 0){
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(rep(1, length(refSpecs)), 2, 1, 3),
lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
} else if (length(refSpecs) == 0){
legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
lty = c(2, 1, 3), lwd = c(2, 3, 2),
col = c('black', 'black', 'black'), cex = 0.8)
}
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
#
# cat('\n##### Whistle plots and table\n')
#
# # if whistles present ...
# if (wl$nWhistles > 0) {
# # create median stats table for all whistles
# # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# # cat('\n')
#
# # plot whistle contours
# # map the needed binary files
# binFiles <- dets@events[[eventUID]]@files$binaries
# wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
# binFiles)
# wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
#
# # load them
# whBin <- loadMultiBinaries(wmFiles)
# # trim to just the event time
# whBinEv <- whBin[names(whBin) %in%
# detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
#
# # #plot - ggplot version/functionized
# # pc <- plotContours(whBinEv)
# # # print(pc)
# # pc + ggtitle(eventUID)
# #
#
# # get plot limits
# # xMax <- 0
# # yMax <- 0
# # for (wc in 1:length(names(whBinEv))){
# # df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# # freq = whBinEv[[wc]]$freq/1000)
# # xMaxTmp <- max(df$time)
# # yMaxTmp <- max(df$freq)
# # if (xMaxTmp > xMax){xMax <- xMaxTmp}
# # if (yMaxTmp > yMax){yMax <- yMaxTmp}
# # }
# # or use standard max lims
# xMax <- 1.5
# yMax <- 20
#
# # plot each line
# plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
# xlab = 'Time (s)', ylab = 'Frequency (kHz)',
# main = 'Whistle Contours')
# # add grid lines for frequency at 0.125 s and 5 kHz intervals
# for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
# col="lightgray")}
# for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
# col="lightgray")}
# # loop through each contour
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# lines(df$time, df$freq, col = rgb(0,0,0,0.4))
# }
#
# # plot histogram of median frequency
# hist(wl$wh$freqMedian/1000,
# breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
# main = 'Histogram of whistle median frequency',
# xlab = 'Median frequency (kHz)')
#
# cat('\n')
# cat('\n')
#
# cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# # create median stats table for all whistles
# cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
# row.names = FALSE) %>%
# kable_styling(bootstrap_options = c('basic', 'condensed'),
# full_width = F))
#
# } else {
# cat('\nNo whistles present.\n')
# }
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}# num clicks/peak freq check
} # loop
Time: 2024-10-06 04:42UTC to 2024-10-06 04:47UTC
Event contains 498 original clicks, 249 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 173 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (6.38 - 7.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (5.78 - 8.77) |
| Median duration [μs] (25-75 percentile) | 185 (100 - 347) |
Time: 2024-10-06 05:00UTC to 2024-10-06 05:06UTC
Event contains 518 original clicks, 259 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.7 |
| Median 10dB Center Frequency [kHz] | 7.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (7.01 - 8.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.08 (6.23 - 9.29) |
| Median duration [μs] (25-75 percentile) | 78 (0 - 175) |
Time: 2024-10-06 09:54UTC to 2024-10-06 10:00UTC
Event contains 456 original clicks, 228 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 185 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.956 (5.89 - 7.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.77 (5.14 - 8.13) |
| Median duration [μs] (25-75 percentile) | 952 (100 - 1666) |
Time: 2024-10-06 10:00UTC to 2024-10-06 10:06UTC
Event contains 502 original clicks, 251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 225 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.03 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.45 - 7.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 ( 5.2 - 9.12) |
| Median duration [μs] (25-75 percentile) | 985 (232 - 1426) |
Time: 2024-10-06 10:06UTC to 2024-10-06 10:11UTC
Event contains 438 original clicks, 219 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 182 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.959 (5.75 - 6.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (4.37 - 7.72) |
| Median duration [μs] (25-75 percentile) | 1363 (383 - 2039) |
Time: 2024-10-06 10:12UTC to 2024-10-06 10:18UTC
Event contains 612 original clicks, 306 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 254 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.913 (6.01 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.46 (4.83 - 8) |
| Median duration [μs] (25-75 percentile) | 1048 (238 - 1658) |
Time: 2024-10-06 10:18UTC to 2024-10-06 10:24UTC
Event contains 684 original clicks, 342 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 295 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.57 |
| Median 10dB Center Frequency [kHz] | 6.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.889 (6.05 - 7.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.45 (5.07 - 8.1) |
| Median duration [μs] (25-75 percentile) | 1225 (296 - 1990) |
Time: 2024-10-06 10:24UTC to 2024-10-06 10:30UTC
Event contains 720 original clicks, 360 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.88 |
| Median 10dB Center Frequency [kHz] | 6.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.959 (6.28 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (5.24 - 8.63) |
| Median duration [μs] (25-75 percentile) | 1505 (1001 - 2189) |
Time: 2024-10-06 10:30UTC to 2024-10-06 10:35UTC
Event contains 602 original clicks, 301 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 281 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.893 (6.19 - 7.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.67 (5.01 - 8.58) |
| Median duration [μs] (25-75 percentile) | 1259 (1000 - 2036) |
Time: 2024-10-06 10:36UTC to 2024-10-06 10:42UTC
Event contains 478 original clicks, 239 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 223 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 7.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.43 - 7.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.53 (5.65 - 8.39) |
| Median duration [μs] (25-75 percentile) | 1343 (1000 - 1874) |
Time: 2024-10-06 11:06UTC to 2024-10-06 11:11UTC
Event contains 592 original clicks, 296 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 285 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.71 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.03 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.31 (4.49 - 8.85) |
| Median duration [μs] (25-75 percentile) | 826 (141 - 1588) |
Time: 2024-10-06 11:12UTC to 2024-10-06 11:18UTC
Event contains 780 original clicks, 390 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 367 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.61 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.42 (4.59 - 8.56) |
| Median duration [μs] (25-75 percentile) | 954 (18 - 1333) |
Time: 2024-10-06 11:18UTC to 2024-10-06 11:23UTC
Event contains 812 original clicks, 406 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 343 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.79 |
| Median 10dB Center Frequency [kHz] | 6.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.888 (6.36 - 7.22) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.47 (5.34 - 8.58) |
| Median duration [μs] (25-75 percentile) | 722 (0 - 1509) |
Time: 2024-10-06 11:24UTC to 2024-10-06 11:29UTC
Event contains 834 original clicks, 417 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 348 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.905 (5.71 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.33 (4.82 - 7.86) |
| Median duration [μs] (25-75 percentile) | 978 (100 - 1744) |
Time: 2024-10-06 11:30UTC to 2024-10-06 11:36UTC
Event contains 922 original clicks, 461 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 397 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 6.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.805 (6.32 - 7.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.38 ( 5.4 - 8.34) |
| Median duration [μs] (25-75 percentile) | 873 (0 - 1760) |
Time: 2024-10-06 11:36UTC to 2024-10-06 11:41UTC
Event contains 518 original clicks, 259 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 227 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.37 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.73 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.88 (4.64 - 7.74) |
| Median duration [μs] (25-75 percentile) | 1131 (242 - 1704) |
Time: 2024-10-06 11:54UTC to 2024-10-06 12:00UTC
Event contains 784 original clicks, 392 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 351 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 6.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.41 - 7.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.56 - 8.81) |
| Median duration [μs] (25-75 percentile) | 446 (0 - 1000) |
Time: 2024-10-06 12:00UTC to 2024-10-06 12:06UTC
Event contains 838 original clicks, 419 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 381 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.3 |
| Median 10dB Center Frequency [kHz] | 7.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 ( 6.8 - 7.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (5.73 - 8.99) |
| Median duration [μs] (25-75 percentile) | 81 (0 - 482) |
Time: 2024-10-06 12:06UTC to 2024-10-06 12:12UTC
Event contains 730 original clicks, 365 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 339 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 7.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (7.49 - 8.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.91 (5.73 - 9.18) |
| Median duration [μs] (25-75 percentile) | 315 (5 - 1000) |
Time: 2024-10-06 12:12UTC to 2024-10-06 12:18UTC
Event contains 736 original clicks, 368 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 352 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 7.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.984 (7.52 - 8.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.74 (6.19 - 9.3) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 1000) |
Time: 2024-10-06 12:18UTC to 2024-10-06 12:24UTC
Event contains 846 original clicks, 423 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 393 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 6.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.88 (6.62 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.65 (5.01 - 8.6) |
| Median duration [μs] (25-75 percentile) | 167 (0 - 1000) |
Time: 2024-10-06 12:24UTC to 2024-10-06 12:29UTC
Event contains 1062 original clicks, 531 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 496 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.97 (5.51 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.69 (4.28 - 7.81) |
| Median duration [μs] (25-75 percentile) | 95 (0 - 1000) |
Time: 2024-10-06 12:30UTC to 2024-10-06 12:35UTC
Event contains 778 original clicks, 389 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 355 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.882 (5.61 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.8 (4.73 - 7.95) |
| Median duration [μs] (25-75 percentile) | 274 (0 - 1147) |
Time: 2024-10-06 12:54UTC to 2024-10-06 13:00UTC
Event contains 418 original clicks, 209 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.67 |
| Median 10dB Center Frequency [kHz] | 6.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.97 (6.19 - 7.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.87 - 8.05) |
| Median duration [μs] (25-75 percentile) | 308 (0 - 1000) |
Time: 2024-10-07 02:12UTC to 2024-10-07 02:17UTC
Event contains 524 original clicks, 262 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 65 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 18.8 |
| Median 3dB Center Frequency [kHz] | 12.8 |
| Median 10dB Center Frequency [kHz] | 12.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.652 (12.6 - 12.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.73 (11.8 - 13.4) |
| Median duration [μs] (25-75 percentile) | 36 (23 - 100) |
Time: 2024-10-07 02:18UTC to 2024-10-07 02:24UTC
Event contains 550 original clicks, 275 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 69 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.8 |
| Median 3dB Center Frequency [kHz] | 11.6 |
| Median 10dB Center Frequency [kHz] | 12.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.705 (11.3 - 11.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.84 (11.1 - 13.1) |
| Median duration [μs] (25-75 percentile) | 31 (23 - 100) |
Time: 2024-10-08 06:30UTC to 2024-10-08 06:36UTC
Event contains 950 original clicks, 475 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 376 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.942 ( 5.4 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.34 (4.67 - 6.97) |
| Median duration [μs] (25-75 percentile) | 631 (141 - 1366) |
Time: 2024-10-08 17:06UTC to 2024-10-08 17:12UTC
Event contains 566 original clicks, 283 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 68 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.88 |
| Median 10dB Center Frequency [kHz] | 9.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.744 (8.44 - 9.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.62 (8.05 - 9.75) |
| Median duration [μs] (25-75 percentile) | 197 (100 - 1262) |
Time: 2024-10-08 17:12UTC to 2024-10-08 17:18UTC
Event contains 592 original clicks, 296 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 56 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 14.6 |
| Median 3dB Center Frequency [kHz] | 11.5 |
| Median 10dB Center Frequency [kHz] | 11.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.578 (11.2 - 11.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.26 (10.9 - 12.3) |
| Median duration [μs] (25-75 percentile) | 210 (100 - 1000) |
Time: 2024-10-08 17:18UTC to 2024-10-08 17:24UTC
Event contains 1226 original clicks, 613 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 10.8 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.991 (10.3 - 11.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 (8.08 - 12.2) |
| Median duration [μs] (25-75 percentile) | 377 (134 - 1000) |
Time: 2024-10-08 20:30UTC to 2024-10-08 20:36UTC
Event contains 936 original clicks, 468 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 193 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 7.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.937 (6.32 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.35 (5.45 - 8.19) |
| Median duration [μs] (25-75 percentile) | 764 (107 - 1833) |
Time: 2024-10-08 20:36UTC to 2024-10-08 20:42UTC
Event contains 734 original clicks, 367 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 145 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.09 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.922 (6.58 - 7.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.68 (5.02 - 8.97) |
| Median duration [μs] (25-75 percentile) | 553 (107 - 1170) |
Time: 2024-10-08 20:42UTC to 2024-10-08 20:48UTC
Event contains 500 original clicks, 250 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 111 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 6.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.88 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.31 (4.15 - 7.2) |
| Median duration [μs] (25-75 percentile) | 396 (20 - 1399) |
Time: 2024-10-08 23:00UTC to 2024-10-08 23:06UTC
Event contains 530 original clicks, 265 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 141 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 8.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.64 - 8.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (4.64 - 10.5) |
| Median duration [μs] (25-75 percentile) | 373 (47 - 1025) |
Time: 2024-10-08 23:06UTC to 2024-10-08 23:12UTC
Event contains 680 original clicks, 340 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 161 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.89 |
| Median 10dB Center Frequency [kHz] | 7.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.765 ( 7.1 - 8.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.86 (5.78 - 9.14) |
| Median duration [μs] (25-75 percentile) | 258 (0 - 1309) |
Time: 2024-10-08 23:12UTC to 2024-10-08 23:18UTC
Event contains 620 original clicks, 310 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 158 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.87 |
| Median 10dB Center Frequency [kHz] | 7.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.25 - 8.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.84 (4.51 - 9.47) |
| Median duration [μs] (25-75 percentile) | 537 (100 - 1892) |
Time: 2024-10-09 08:54UTC to 2024-10-09 09:00UTC
Event contains 466 original clicks, 233 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 190 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 ( 5.2 - 6.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.85 (4.26 - 9.27) |
| Median duration [μs] (25-75 percentile) | 527 (198 - 1107) |
Time: 2024-10-09 09:00UTC to 2024-10-09 09:06UTC
Event contains 900 original clicks, 450 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 371 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (5.08 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (4.17 - 8.03) |
| Median duration [μs] (25-75 percentile) | 704 (130 - 1689) |
Time: 2024-10-09 09:06UTC to 2024-10-09 09:12UTC
Event contains 1348 original clicks, 674 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 532 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.25 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (4.13 - 8.38) |
| Median duration [μs] (25-75 percentile) | 980 (227 - 1893) |
Time: 2024-10-09 09:12UTC to 2024-10-09 09:18UTC
Event contains 2118 original clicks, 1059 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 871 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (5.15 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (3.99 - 8.22) |
| Median duration [μs] (25-75 percentile) | 1202 (308 - 2097) |
Time: 2024-10-09 09:18UTC to 2024-10-09 09:24UTC
Event contains 2050 original clicks, 1025 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 828 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.09 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (4.07 - 7.83) |
| Median duration [μs] (25-75 percentile) | 1457 (1000 - 2323) |
Time: 2024-10-09 09:24UTC to 2024-10-09 09:30UTC
Event contains 1466 original clicks, 733 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 590 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.75 |
| Median 10dB Center Frequency [kHz] | 5.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (4.94 - 6.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.63 (3.91 - 7.83) |
| Median duration [μs] (25-75 percentile) | 1405 (475 - 2294) |
Time: 2024-10-09 09:30UTC to 2024-10-09 09:36UTC
Event contains 526 original clicks, 263 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 218 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.02 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (3.96 - 7.84) |
| Median duration [μs] (25-75 percentile) | 1281 (465 - 2174) |
Time: 2024-10-09 09:42UTC to 2024-10-09 09:48UTC
Event contains 1088 original clicks, 544 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 404 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.81 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (4.34 - 8.78) |
| Median duration [μs] (25-75 percentile) | 678 (164 - 1635) |
Time: 2024-10-09 09:48UTC to 2024-10-09 09:54UTC
Event contains 2294 original clicks, 1147 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 896 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.99 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (4.71 - 8.73) |
| Median duration [μs] (25-75 percentile) | 1482 (1000 - 2201) |
Time: 2024-10-09 09:54UTC to 2024-10-09 10:00UTC
Event contains 3448 original clicks, 1724 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1332 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.59 - 7.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (4.35 - 8.37) |
| Median duration [μs] (25-75 percentile) | 1611 (1000 - 2234) |
Time: 2024-10-09 10:00UTC to 2024-10-09 10:06UTC
Event contains 4240 original clicks, 2120 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1707 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.41 |
| Median 10dB Center Frequency [kHz] | 6.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.59 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (4.32 - 8.7) |
| Median duration [μs] (25-75 percentile) | 1423 (1000 - 2224) |
Time: 2024-10-09 10:06UTC to 2024-10-09 10:12UTC
Event contains 5078 original clicks, 2539 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1989 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.42 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.56 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (4.25 - 8.72) |
| Median duration [μs] (25-75 percentile) | 1530 (1000 - 2192) |
Time: 2024-10-09 10:12UTC to 2024-10-09 10:18UTC
Event contains 6486 original clicks, 3243 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2577 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.71 - 7.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (4.46 - 8.79) |
| Median duration [μs] (25-75 percentile) | 1515 (1000 - 2242) |
Time: 2024-10-09 10:18UTC to 2024-10-09 10:24UTC
Event contains 5862 original clicks, 2931 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2439 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.39 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (4.99 - 9.19) |
| Median duration [μs] (25-75 percentile) | 1363 (306 - 2195) |
Time: 2024-10-09 10:24UTC to 2024-10-09 10:30UTC
Event contains 4930 original clicks, 2465 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2022 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.36 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (5.07 - 8.97) |
| Median duration [μs] (25-75 percentile) | 1382 (416 - 2194) |
Time: 2024-10-09 10:30UTC to 2024-10-09 10:36UTC
Event contains 4780 original clicks, 2390 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2000 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.83 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.01 - 7.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (4.74 - 8.98) |
| Median duration [μs] (25-75 percentile) | 1475 (1000 - 2276) |
Time: 2024-10-09 10:36UTC to 2024-10-09 10:42UTC
Event contains 7006 original clicks, 3503 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2982 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.54 - 7.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.03 (4.27 - 8.82) |
| Median duration [μs] (25-75 percentile) | 1530 (1000 - 2291) |
Time: 2024-10-09 10:42UTC to 2024-10-09 10:48UTC
Event contains 8216 original clicks, 4108 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3635 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (5.38 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.85 (4.24 - 8.7) |
| Median duration [μs] (25-75 percentile) | 1577 (1000 - 2304) |
Time: 2024-10-09 10:48UTC to 2024-10-09 10:54UTC
Event contains 10786 original clicks, 5393 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4807 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (5.61 - 7.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.34 (4.41 - 9.21) |
| Median duration [μs] (25-75 percentile) | 1562 (1000 - 2357) |
Time: 2024-10-09 10:54UTC to 2024-10-09 11:00UTC
Event contains 13420 original clicks, 6710 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5949 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.88 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.07 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (4.57 - 9.31) |
| Median duration [μs] (25-75 percentile) | 1275 (451 - 2211) |
Time: 2024-10-09 11:00UTC to 2024-10-09 11:06UTC
Event contains 10750 original clicks, 5375 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4775 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.18 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 ( 6.5 - 7.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (4.99 - 9.39) |
| Median duration [μs] (25-75 percentile) | 928 (136 - 1803) |
Time: 2024-10-09 11:06UTC to 2024-10-09 11:12UTC
Event contains 11854 original clicks, 5927 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5208 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 7.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (6.33 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (5.08 - 9.14) |
| Median duration [μs] (25-75 percentile) | 1071 (123 - 1919) |
Time: 2024-10-09 11:12UTC to 2024-10-09 11:18UTC
Event contains 12260 original clicks, 6130 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5445 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 ( 6.2 - 7.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (4.89 - 8.89) |
| Median duration [μs] (25-75 percentile) | 993 (107 - 1814) |
Time: 2024-10-09 11:18UTC to 2024-10-09 11:24UTC
Event contains 10120 original clicks, 5060 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4580 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.43 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (5.07 - 9.28) |
| Median duration [μs] (25-75 percentile) | 988 (407 - 1684) |
Time: 2024-10-09 11:24UTC to 2024-10-09 11:30UTC
Event contains 9328 original clicks, 4664 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4170 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.37 - 7.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 ( 5.1 - 9.05) |
| Median duration [μs] (25-75 percentile) | 910 (175 - 1608) |
Time: 2024-10-09 11:30UTC to 2024-10-09 11:36UTC
Event contains 1086 original clicks, 543 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 481 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.45 |
| Median 10dB Center Frequency [kHz] | 7.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.94 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 (5.62 - 9.48) |
| Median duration [μs] (25-75 percentile) | 738 (248 - 1426) |
Time: 2024-10-09 11:42UTC to 2024-10-09 11:48UTC
Event contains 1740 original clicks, 870 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 819 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.06 |
| Median 10dB Center Frequency [kHz] | 7.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 ( 6.3 - 7.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.2 (4.75 - 9.49) |
| Median duration [μs] (25-75 percentile) | 1001 (1000 - 1529) |
Time: 2024-10-09 11:48UTC to 2024-10-09 11:54UTC
Event contains 8718 original clicks, 4359 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3878 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.71 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 5.9 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.63 (4.51 - 9.02) |
| Median duration [μs] (25-75 percentile) | 1353 (1000 - 2202) |
Time: 2024-10-09 11:54UTC to 2024-10-09 12:00UTC
Event contains 8328 original clicks, 4164 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3729 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.82 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.99 - 7.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (4.63 - 9.12) |
| Median duration [μs] (25-75 percentile) | 1311 (1000 - 2109) |
Time: 2024-10-09 12:00UTC to 2024-10-09 12:06UTC
Event contains 7770 original clicks, 3885 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3326 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.43 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.49 (4.15 - 8.55) |
| Median duration [μs] (25-75 percentile) | 1431 (1000 - 2250) |
Time: 2024-10-09 12:06UTC to 2024-10-09 12:12UTC
Event contains 7746 original clicks, 3873 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3448 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.56 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.33 (4.31 - 8.25) |
| Median duration [μs] (25-75 percentile) | 1465 (1000 - 2245) |
Time: 2024-10-09 12:12UTC to 2024-10-09 12:18UTC
Event contains 6244 original clicks, 3122 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2805 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.13 - 6.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.18 (4.17 - 7.9) |
| Median duration [μs] (25-75 percentile) | 1554 (1000 - 2242) |
Time: 2024-10-09 12:48UTC to 2024-10-09 12:54UTC
Event contains 2406 original clicks, 1203 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 922 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.11 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.47 (3.93 - 7.92) |
| Median duration [μs] (25-75 percentile) | 1912 (1000 - 2391) |
Time: 2024-10-09 13:12UTC to 2024-10-09 13:18UTC
Event contains 1534 original clicks, 767 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 624 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 5.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.09 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (3.78 - 7.75) |
| Median duration [μs] (25-75 percentile) | 1414 (1000 - 2227) |
Time: 2024-10-09 13:30UTC to 2024-10-09 13:36UTC
Event contains 1074 original clicks, 537 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 449 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (4.98 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (3.81 - 8.32) |
| Median duration [μs] (25-75 percentile) | 1014 (172 - 1979) |
Time: 2024-10-09 13:36UTC to 2024-10-09 13:42UTC
Event contains 522 original clicks, 261 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 241 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.42 - 6.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (4.32 - 7.92) |
| Median duration [μs] (25-75 percentile) | 1069 (1000 - 2182) |
Time: 2024-10-09 13:42UTC to 2024-10-09 13:48UTC
Event contains 956 original clicks, 478 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 434 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.42 - 6.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (4.19 - 7.85) |
| Median duration [μs] (25-75 percentile) | 1092 (421 - 1933) |
Time: 2024-10-09 14:06UTC to 2024-10-09 14:12UTC
Event contains 1620 original clicks, 810 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 736 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 6.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.49 - 7.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.99 (4.02 - 8.86) |
| Median duration [μs] (25-75 percentile) | 1747 (1000 - 2433) |
Time: 2024-10-09 14:12UTC to 2024-10-09 14:18UTC
Event contains 2996 original clicks, 1498 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1350 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.43 - 7.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (4.24 - 8.6) |
| Median duration [μs] (25-75 percentile) | 1520 (1000 - 2327) |
Time: 2024-10-09 14:18UTC to 2024-10-09 14:24UTC
Event contains 6152 original clicks, 3076 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2780 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.73 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.85 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.92 (4.51 - 9.18) |
| Median duration [μs] (25-75 percentile) | 1582 (1000 - 2354) |
Time: 2024-10-09 14:24UTC to 2024-10-09 14:30UTC
Event contains 11404 original clicks, 5702 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5277 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.84 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (5.92 - 7.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.3 (4.46 - 9.6) |
| Median duration [μs] (25-75 percentile) | 1431 (1000 - 2320) |
Time: 2024-10-09 14:30UTC to 2024-10-09 14:36UTC
Event contains 14224 original clicks, 7112 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6547 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 6.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (5.43 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.52 (4.14 - 9.27) |
| Median duration [μs] (25-75 percentile) | 1551 (1000 - 2377) |
Time: 2024-10-09 14:36UTC to 2024-10-09 14:42UTC
Event contains 13522 original clicks, 6761 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.8 |
| Median 10dB Center Frequency [kHz] | 6.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (4.89 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (3.74 - 8.61) |
| Median duration [μs] (25-75 percentile) | 1674 (1124 - 2364) |
Time: 2024-10-09 21:24UTC to 2024-10-09 21:30UTC
Event contains 476 original clicks, 238 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (4.93 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.28 (3.74 - 8.44) |
| Median duration [μs] (25-75 percentile) | 104 (0 - 383) |
Time: 2024-10-09 22:06UTC to 2024-10-09 22:12UTC
Event contains 426 original clicks, 213 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 151 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.71 (4.82 - 7.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.21 (3.73 - 9.05) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-09 22:12UTC to 2024-10-09 22:18UTC
Event contains 422 original clicks, 211 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 159 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 6.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (5.03 - 6.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.88 (4.02 - 8.79) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 132) |
Time: 2024-10-09 22:18UTC to 2024-10-09 22:24UTC
Event contains 508 original clicks, 254 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 215 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 7.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 (6.02 - 7.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.52 (4.65 - 9.29) |
| Median duration [μs] (25-75 percentile) | 5.2 (0 - 164) |
Time: 2024-10-09 22:54UTC to 2024-10-09 23:00UTC
Event contains 576 original clicks, 288 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.41 - 6.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (4.28 - 8.37) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-09 23:00UTC to 2024-10-09 23:06UTC
Event contains 672 original clicks, 336 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 243 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 6.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.36 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (4.24 - 8.16) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-09 23:06UTC to 2024-10-09 23:12UTC
Event contains 752 original clicks, 376 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 284 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.42 - 6.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.92 (4.23 - 8.56) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 24) |
Time: 2024-10-09 23:24UTC to 2024-10-09 23:30UTC
Event contains 1512 original clicks, 756 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 586 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.23 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (4.07 - 8.06) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 265) |
Time: 2024-10-09 23:36UTC to 2024-10-09 23:42UTC
Event contains 1584 original clicks, 792 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.45 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 (4.19 - 7.94) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 104) |
Time: 2024-10-09 23:48UTC to 2024-10-09 23:54UTC
Event contains 1122 original clicks, 561 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 444 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 6.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.19 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.18 (4.25 - 7.8) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 177) |
Time: 2024-10-09 23:54UTC to 2024-10-10 00:00UTC
Event contains 906 original clicks, 453 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 352 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.51 |
| Median 10dB Center Frequency [kHz] | 6.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.84 - 7.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (4.42 - 8.55) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 16) |
Time: 2024-10-10 00:00UTC to 2024-10-10 00:06UTC
Event contains 1798 original clicks, 899 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 704 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.55 - 6.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (4.19 - 8.19) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 136) |
Time: 2024-10-10 00:06UTC to 2024-10-10 00:12UTC
Event contains 2346 original clicks, 1173 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 930 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.83 |
| Median 10dB Center Frequency [kHz] | 5.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.08 - 6.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (4.01 - 7.89) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 202) |
Time: 2024-10-10 00:12UTC to 2024-10-10 00:18UTC
Event contains 1800 original clicks, 900 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 662 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.61 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (4.21 - 8.14) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 16) |
Time: 2024-10-10 00:18UTC to 2024-10-10 00:24UTC
Event contains 1798 original clicks, 899 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 679 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.14 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.49 (4.05 - 7.84) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 146) |
Time: 2024-10-10 00:24UTC to 2024-10-10 00:30UTC
Event contains 1672 original clicks, 836 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 604 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.11 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 ( 3.9 - 8.25) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-10 00:36UTC to 2024-10-10 00:42UTC
Event contains 2216 original clicks, 1108 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 860 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.25 - 6.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (4.02 - 8.51) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 120) |
Time: 2024-10-10 00:42UTC to 2024-10-10 00:48UTC
Event contains 1430 original clicks, 715 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 506 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.42 - 7.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.99 (4.06 - 8.75) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 43) |
Time: 2024-10-10 00:48UTC to 2024-10-10 00:54UTC
Event contains 1828 original clicks, 914 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 700 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.83 - 7.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.86 (4.17 - 8.61) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 133) |
Time: 2024-10-10 00:54UTC to 2024-10-10 01:00UTC
Event contains 2152 original clicks, 1076 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 803 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.85 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (4.23 - 8.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-10 01:00UTC to 2024-10-10 01:06UTC
Event contains 2000 original clicks, 1000 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 738 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.49 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (4.18 - 8.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-10 01:06UTC to 2024-10-10 01:12UTC
Event contains 2956 original clicks, 1478 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1181 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.98 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 5.2 - 6.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.53 (4.11 - 7.86) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 123) |
Time: 2024-10-10 01:12UTC to 2024-10-10 01:18UTC
Event contains 2914 original clicks, 1457 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1174 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.45 - 6.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (4.06 - 8.29) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 112) |
Time: 2024-10-10 01:18UTC to 2024-10-10 01:24UTC
Event contains 3906 original clicks, 1953 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1636 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 6.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.02 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (4.74 - 8.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 123) |
Time: 2024-10-10 01:24UTC to 2024-10-10 01:30UTC
Event contains 4428 original clicks, 2214 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1780 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.51 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.91 - 7.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.32 (4.44 - 8.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-10 01:30UTC to 2024-10-10 01:36UTC
Event contains 4296 original clicks, 2148 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1754 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.59 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.29 ( 4.2 - 8.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 112) |
Time: 2024-10-10 01:36UTC to 2024-10-10 01:42UTC
Event contains 2902 original clicks, 1451 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1105 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.38 - 7.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (4.94 - 8.89) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-10-10 01:42UTC to 2024-10-10 01:48UTC
Event contains 3766 original clicks, 1883 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1506 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 6.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.96 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (4.47 - 9.06) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-10 01:48UTC to 2024-10-10 01:54UTC
Event contains 4806 original clicks, 2403 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1979 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7 |
| Median 10dB Center Frequency [kHz] | 6.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.35 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.51 (4.82 - 8.75) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 120) |
Time: 2024-10-10 01:54UTC to 2024-10-10 02:00UTC
Event contains 4624 original clicks, 2312 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1829 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.18 - 7.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (4.56 - 8.82) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-10 02:00UTC to 2024-10-10 02:06UTC
Event contains 3922 original clicks, 1961 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1580 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.82 - 7.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (4.43 - 8.99) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 172) |
Time: 2024-10-10 02:06UTC to 2024-10-10 02:12UTC
Event contains 5082 original clicks, 2541 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2025 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.06 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.28 - 7.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 (4.75 - 9.36) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-10 02:12UTC to 2024-10-10 02:18UTC
Event contains 4978 original clicks, 2489 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2022 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.87 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.14 - 7.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.63 ( 4.8 - 9.05) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 203) |
Time: 2024-10-10 02:18UTC to 2024-10-10 02:24UTC
Event contains 5216 original clicks, 2608 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2142 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.24 - 7.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.75 - 9.29) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 242) |
Time: 2024-10-10 02:24UTC to 2024-10-10 02:30UTC
Event contains 7064 original clicks, 3532 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3041 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.89 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (4.55 - 8.99) |
| Median duration [μs] (25-75 percentile) | 169 (0 - 1000) |
Time: 2024-10-10 02:30UTC to 2024-10-10 02:36UTC
Event contains 9092 original clicks, 4546 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3903 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.34 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (4.95 - 9.15) |
| Median duration [μs] (25-75 percentile) | 99 (0 - 1000) |
Time: 2024-10-10 02:36UTC to 2024-10-10 02:42UTC
Event contains 9356 original clicks, 4678 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4099 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.68 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.88 - 7.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.97 (4.46 - 9.2) |
| Median duration [μs] (25-75 percentile) | 216 (0 - 1000) |
Time: 2024-10-10 02:42UTC to 2024-10-10 02:48UTC
Event contains 10720 original clicks, 5360 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4960 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.88 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (5.96 - 7.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (4.54 - 9.49) |
| Median duration [μs] (25-75 percentile) | 454 (100 - 1001) |
Time: 2024-10-10 02:48UTC to 2024-10-10 02:54UTC
Event contains 11530 original clicks, 5765 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5326 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.45 - 7.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (4.97 - 9.53) |
| Median duration [μs] (25-75 percentile) | 297 (5 - 1000) |
Time: 2024-10-10 02:54UTC to 2024-10-10 03:00UTC
Event contains 10106 original clicks, 5053 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4587 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.42 |
| Median 10dB Center Frequency [kHz] | 7.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.63 - 8.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (5.06 - 9.78) |
| Median duration [μs] (25-75 percentile) | 143 (0 - 1000) |
Time: 2024-10-10 03:00UTC to 2024-10-10 03:06UTC
Event contains 8658 original clicks, 4329 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3909 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.5 |
| Median 10dB Center Frequency [kHz] | 7.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.79 - 8.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (5.11 - 9.99) |
| Median duration [μs] (25-75 percentile) | 190 (0 - 1000) |
Time: 2024-10-10 03:06UTC to 2024-10-10 03:12UTC
Event contains 10618 original clicks, 5309 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4803 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.55 - 8.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (4.94 - 9.99) |
| Median duration [μs] (25-75 percentile) | 349 (39 - 1000) |
Time: 2024-10-10 03:12UTC to 2024-10-10 03:18UTC
Event contains 12124 original clicks, 6062 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5618 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.33 |
| Median 10dB Center Frequency [kHz] | 7.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.42 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.31 (4.55 - 10.1) |
| Median duration [μs] (25-75 percentile) | 568 (100 - 1220) |
Time: 2024-10-10 03:18UTC to 2024-10-10 03:24UTC
Event contains 13588 original clicks, 6794 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6233 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.69 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (4.68 - 9.97) |
| Median duration [μs] (25-75 percentile) | 412 (29 - 1000) |
Time: 2024-10-10 03:24UTC to 2024-10-10 03:30UTC
Event contains 14420 original clicks, 7210 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6684 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.24 |
| Median 10dB Center Frequency [kHz] | 8.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (7.35 - 9.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.51 (5.36 - 11) |
| Median duration [μs] (25-75 percentile) | 441 (100 - 1074) |
Time: 2024-10-10 03:30UTC to 2024-10-10 03:36UTC
Event contains 12534 original clicks, 6267 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5885 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.07 |
| Median 10dB Center Frequency [kHz] | 8.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (7.13 - 9.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.56 (5.31 - 11) |
| Median duration [μs] (25-75 percentile) | 555 (100 - 1288) |
Time: 2024-10-10 03:36UTC to 2024-10-10 03:42UTC
Event contains 8464 original clicks, 4232 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3898 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.53 |
| Median 10dB Center Frequency [kHz] | 8.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (7.67 - 9.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.03 (5.81 - 10.9) |
| Median duration [μs] (25-75 percentile) | 252 (0 - 1009) |
Time: 2024-10-10 03:42UTC to 2024-10-10 03:48UTC
Event contains 10804 original clicks, 5402 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4846 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.2 |
| Median 10dB Center Frequency [kHz] | 8.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.41 - 9.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.4 (5.39 - 11) |
| Median duration [μs] (25-75 percentile) | 130 (0 - 1000) |
Time: 2024-10-10 03:48UTC to 2024-10-10 03:54UTC
Event contains 14318 original clicks, 7159 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6594 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.79 |
| Median 10dB Center Frequency [kHz] | 8.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (7.84 - 9.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.01 (5.65 - 11.9) |
| Median duration [μs] (25-75 percentile) | 206 (0 - 1000) |
Time: 2024-10-10 03:54UTC to 2024-10-10 04:00UTC
Event contains 15442 original clicks, 7721 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6898 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.99 |
| Median 10dB Center Frequency [kHz] | 9.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (8.09 - 9.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.75 (5.91 - 11.8) |
| Median duration [μs] (25-75 percentile) | 175 (0 - 1000) |
Time: 2024-10-10 04:00UTC to 2024-10-10 04:06UTC
Event contains 14740 original clicks, 7370 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6514 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.97 |
| Median 10dB Center Frequency [kHz] | 9.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (7.93 - 9.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.85 (5.57 - 12) |
| Median duration [μs] (25-75 percentile) | 167 (0 - 1000) |
Time: 2024-10-10 04:06UTC to 2024-10-10 04:12UTC
Event contains 14282 original clicks, 7141 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6259 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.83 |
| Median 10dB Center Frequency [kHz] | 8.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (7.88 - 9.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.61 (5.41 - 11.8) |
| Median duration [μs] (25-75 percentile) | 219 (0 - 1000) |
Time: 2024-10-10 04:12UTC to 2024-10-10 04:18UTC
Event contains 10766 original clicks, 5383 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4810 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.57 |
| Median 10dB Center Frequency [kHz] | 8.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (7.68 - 9.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 (5.48 - 11.4) |
| Median duration [μs] (25-75 percentile) | 153 (0 - 1014) |
Time: 2024-10-10 04:18UTC to 2024-10-10 04:24UTC
Event contains 8450 original clicks, 4225 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3710 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.65 |
| Median 10dB Center Frequency [kHz] | 7.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.78 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.83 - 10.2) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 1000) |
Time: 2024-10-10 04:24UTC to 2024-10-10 04:30UTC
Event contains 11536 original clicks, 5768 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5255 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 ( 6.7 - 8.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 (4.41 - 10.1) |
| Median duration [μs] (25-75 percentile) | 355 (0 - 1095) |
Time: 2024-10-10 04:30UTC to 2024-10-10 04:36UTC
Event contains 12808 original clicks, 6404 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5867 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.9 |
| Median 10dB Center Frequency [kHz] | 7.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (5.98 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.34 (4.17 - 9.93) |
| Median duration [μs] (25-75 percentile) | 430 (34 - 1155) |
Time: 2024-10-10 04:36UTC to 2024-10-10 04:42UTC
Event contains 13584 original clicks, 6792 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6224 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.51 |
| Median 10dB Center Frequency [kHz] | 6.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (5.77 - 7.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 (4.09 - 9.28) |
| Median duration [μs] (25-75 percentile) | 381 (28 - 1109) |
Time: 2024-10-10 04:42UTC to 2024-10-10 04:48UTC
Event contains 12364 original clicks, 6182 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5640 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.03 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.28 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (3.74 - 8.59) |
| Median duration [μs] (25-75 percentile) | 377 (3 - 1082) |
Time: 2024-10-10 04:48UTC to 2024-10-10 04:54UTC
Event contains 9116 original clicks, 4558 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3933 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.83 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.12 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (3.87 - 8.6) |
| Median duration [μs] (25-75 percentile) | 188 (0 - 1000) |
Time: 2024-10-10 04:54UTC to 2024-10-10 05:00UTC
Event contains 6678 original clicks, 3339 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2800 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.11 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (3.93 - 8.59) |
| Median duration [μs] (25-75 percentile) | 68 (0 - 1000) |
Time: 2024-10-10 05:00UTC to 2024-10-10 05:06UTC
Event contains 5902 original clicks, 2951 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2602 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.18 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (3.85 - 8.2) |
| Median duration [μs] (25-75 percentile) | 167 (0 - 1000) |
Time: 2024-10-10 05:48UTC to 2024-10-10 05:54UTC
Event contains 568 original clicks, 284 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.09 - 6.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 ( 4 - 7.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-10 09:24UTC to 2024-10-10 09:30UTC
Event contains 562 original clicks, 281 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 181 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.44 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.57 - 7.12) |
| Median duration [μs] (25-75 percentile) | 258 (0 - 1017) |
Time: 2024-10-10 21:24UTC to 2024-10-10 21:30UTC
Event contains 1046 original clicks, 523 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 390 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.66 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (4.99 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.52 (4.07 - 7.94) |
| Median duration [μs] (25-75 percentile) | 413 (108 - 1280) |
Time: 2024-10-11 00:36UTC to 2024-10-11 00:42UTC
Event contains 1906 original clicks, 953 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 808 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (5.29 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (4.25 - 8.26) |
| Median duration [μs] (25-75 percentile) | 1208 (331 - 1993) |
Time: 2024-10-11 05:30UTC to 2024-10-11 05:36UTC
Event contains 1658 original clicks, 829 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 669 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 ( 5.4 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.96 (4.35 - 7.56) |
| Median duration [μs] (25-75 percentile) | 1272 (1000 - 1960) |
Time: 2024-10-11 05:36UTC to 2024-10-11 05:42UTC
Event contains 1896 original clicks, 948 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 749 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.49 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.91 (4.37 - 7.67) |
| Median duration [μs] (25-75 percentile) | 1575 (1000 - 2234) |
Time: 2024-10-11 05:42UTC to 2024-10-11 05:48UTC
Event contains 1624 original clicks, 812 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 686 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.63 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.68 (4.73 - 7.79) |
| Median duration [μs] (25-75 percentile) | 1361 (1000 - 2119) |
Time: 2024-10-11 05:48UTC to 2024-10-11 05:54UTC
Event contains 2024 original clicks, 1012 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 826 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 ( 5.4 - 6.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 (4.48 - 7.74) |
| Median duration [μs] (25-75 percentile) | 1453 (1000 - 2175) |
Time: 2024-10-11 05:54UTC to 2024-10-11 06:00UTC
Event contains 1182 original clicks, 591 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 486 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 ( 5.6 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.54 - 8.07) |
| Median duration [μs] (25-75 percentile) | 1324 (1000 - 2056) |
Time: 2024-10-11 06:00UTC to 2024-10-11 06:06UTC
Event contains 1558 original clicks, 779 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 655 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.16 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.06 ( 4.3 - 7.73) |
| Median duration [μs] (25-75 percentile) | 1353 (1000 - 2082) |
Time: 2024-10-11 06:06UTC to 2024-10-11 06:12UTC
Event contains 2042 original clicks, 1021 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 865 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.37 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.58 - 7.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.03 (4.67 - 8.1) |
| Median duration [μs] (25-75 percentile) | 1363 (1000 - 2109) |
Time: 2024-10-11 06:12UTC to 2024-10-11 06:18UTC
Event contains 3330 original clicks, 1665 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1441 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.37 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.61 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (4.52 - 8.28) |
| Median duration [μs] (25-75 percentile) | 1426 (1000 - 2177) |
Time: 2024-10-11 06:18UTC to 2024-10-11 06:24UTC
Event contains 3240 original clicks, 1620 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1436 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.65 - 7.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.24 (4.64 - 8.26) |
| Median duration [μs] (25-75 percentile) | 1320 (1000 - 2054) |
Time: 2024-10-11 06:24UTC to 2024-10-11 06:30UTC
Event contains 3878 original clicks, 1939 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1753 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 6.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.87 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.14 (4.69 - 8.47) |
| Median duration [μs] (25-75 percentile) | 1303 (1000 - 1966) |
Time: 2024-10-11 06:30UTC to 2024-10-11 06:36UTC
Event contains 4744 original clicks, 2372 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2070 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.16 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.44 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 ( 4.5 - 8.1) |
| Median duration [μs] (25-75 percentile) | 1521 (1000 - 2194) |
Time: 2024-10-11 06:36UTC to 2024-10-11 06:42UTC
Event contains 4914 original clicks, 2457 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2192 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.45 |
| Median 10dB Center Frequency [kHz] | 6.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.71 - 7.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 ( 4.6 - 8.33) |
| Median duration [μs] (25-75 percentile) | 1376 (1000 - 2052) |
Time: 2024-10-11 06:42UTC to 2024-10-11 06:48UTC
Event contains 6694 original clicks, 3347 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2987 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.73 - 7.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (4.63 - 8.36) |
| Median duration [μs] (25-75 percentile) | 1332 (1000 - 2070) |
Time: 2024-10-11 06:48UTC to 2024-10-11 06:54UTC
Event contains 6964 original clicks, 3482 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3185 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.52 |
| Median 10dB Center Frequency [kHz] | 6.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.87 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.03 (4.71 - 8.37) |
| Median duration [μs] (25-75 percentile) | 1267 (1000 - 2044) |
Time: 2024-10-11 06:54UTC to 2024-10-11 07:00UTC
Event contains 7236 original clicks, 3618 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3341 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 6.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.97 - 7.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.19 ( 4.9 - 8.48) |
| Median duration [μs] (25-75 percentile) | 1155 (373 - 2007) |
Time: 2024-10-11 07:00UTC to 2024-10-11 07:06UTC
Event contains 7212 original clicks, 3606 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3236 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.85 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.01 (4.91 - 8.33) |
| Median duration [μs] (25-75 percentile) | 1150 (1000 - 1976) |
Time: 2024-10-11 07:06UTC to 2024-10-11 07:12UTC
Event contains 7786 original clicks, 3893 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3602 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.07 |
| Median 10dB Center Frequency [kHz] | 7.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.36 - 7.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 ( 5.2 - 9.18) |
| Median duration [μs] (25-75 percentile) | 905 (329 - 1421) |
Time: 2024-10-11 07:12UTC to 2024-10-11 07:18UTC
Event contains 7620 original clicks, 3810 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3546 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 7.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.33 - 7.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.4 (4.92 - 9.15) |
| Median duration [μs] (25-75 percentile) | 1000 (1000 - 1554) |
Time: 2024-10-11 07:18UTC to 2024-10-11 07:24UTC
Event contains 10182 original clicks, 5091 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4722 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.64 - 8.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (5.39 - 9.54) |
| Median duration [μs] (25-75 percentile) | 859 (441 - 1376) |
Time: 2024-10-11 07:24UTC to 2024-10-11 07:30UTC
Event contains 10362 original clicks, 5181 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4830 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 7.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.85 - 8.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (5.25 - 10) |
| Median duration [μs] (25-75 percentile) | 785 (339 - 1316) |
Time: 2024-10-11 07:30UTC to 2024-10-11 07:36UTC
Event contains 11232 original clicks, 5616 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5217 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.41 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.61 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (5.23 - 9.73) |
| Median duration [μs] (25-75 percentile) | 712 (274 - 1293) |
Time: 2024-10-11 07:36UTC to 2024-10-11 07:42UTC
Event contains 6390 original clicks, 3195 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2992 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.14 |
| Median 10dB Center Frequency [kHz] | 8.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (7.24 - 8.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (5.64 - 10.5) |
| Median duration [μs] (25-75 percentile) | 719 (300 - 1512) |
Time: 2024-10-11 07:42UTC to 2024-10-11 07:48UTC
Event contains 4006 original clicks, 2003 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1905 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.12 |
| Median 10dB Center Frequency [kHz] | 8.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (7.11 - 9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (5.47 - 10.7) |
| Median duration [μs] (25-75 percentile) | 824 (362 - 1681) |
Time: 2024-10-11 07:48UTC to 2024-10-11 07:54UTC
Event contains 4448 original clicks, 2224 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2088 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.22 |
| Median 10dB Center Frequency [kHz] | 8.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 ( 7.2 - 9.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.45 (5.39 - 11.3) |
| Median duration [μs] (25-75 percentile) | 925 (422 - 1799) |
Time: 2024-10-11 07:54UTC to 2024-10-11 08:00UTC
Event contains 4074 original clicks, 2037 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1882 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 8.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (6.78 - 8.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.58 (4.85 - 10.8) |
| Median duration [μs] (25-75 percentile) | 1122 (1000 - 2043) |
Time: 2024-10-11 08:00UTC to 2024-10-11 08:06UTC
Event contains 5000 original clicks, 2500 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2319 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.1 |
| Median 10dB Center Frequency [kHz] | 8.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (7.16 - 8.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.22 (5.34 - 10.9) |
| Median duration [μs] (25-75 percentile) | 1000 (469 - 1757) |
Time: 2024-10-11 08:06UTC to 2024-10-11 08:12UTC
Event contains 5780 original clicks, 2890 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2640 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.84 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.07 - 7.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 (4.64 - 9.55) |
| Median duration [μs] (25-75 percentile) | 984 (396 - 1413) |
Time: 2024-10-11 08:12UTC to 2024-10-11 08:18UTC
Event contains 4124 original clicks, 2062 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1864 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 6.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.73 - 7.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.92 (4.35 - 9.14) |
| Median duration [μs] (25-75 percentile) | 967 (438 - 1418) |
Time: 2024-10-11 08:18UTC to 2024-10-11 08:24UTC
Event contains 3604 original clicks, 1802 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1625 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.45 |
| Median 10dB Center Frequency [kHz] | 6.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.81 - 7.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (4.41 - 8.96) |
| Median duration [μs] (25-75 percentile) | 824 (211 - 1303) |
Time: 2024-10-11 08:24UTC to 2024-10-11 08:30UTC
Event contains 3558 original clicks, 1779 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1576 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.36 - 6.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 (3.99 - 9.31) |
| Median duration [μs] (25-75 percentile) | 1064 (1000 - 1410) |
Time: 2024-10-11 08:30UTC to 2024-10-11 08:36UTC
Event contains 2598 original clicks, 1299 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1149 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.31 - 6.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.38 ( 3.9 - 8.97) |
| Median duration [μs] (25-75 percentile) | 1058 (487 - 1483) |
Time: 2024-10-11 08:36UTC to 2024-10-11 08:42UTC
Event contains 1540 original clicks, 770 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 698 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.06 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (3.84 - 8.79) |
| Median duration [μs] (25-75 percentile) | 954 (490 - 1453) |
Time: 2024-10-11 08:42UTC to 2024-10-11 08:48UTC
Event contains 1464 original clicks, 732 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 643 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 ( 5.5 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.63 (4.39 - 8.89) |
| Median duration [μs] (25-75 percentile) | 829 (266 - 1298) |
Time: 2024-10-11 08:48UTC to 2024-10-11 08:54UTC
Event contains 4858 original clicks, 2429 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2074 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.7 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.11 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.4 (3.95 - 7.92) |
| Median duration [μs] (25-75 percentile) | 829 (269 - 1290) |
Time: 2024-10-11 08:54UTC to 2024-10-11 09:00UTC
Event contains 5348 original clicks, 2674 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2331 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.38 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.12 - 7.97) |
| Median duration [μs] (25-75 percentile) | 414 (13 - 1000) |
Time: 2024-10-11 09:00UTC to 2024-10-11 09:06UTC
Event contains 4148 original clicks, 2074 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1844 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.68 |
| Median 10dB Center Frequency [kHz] | 5.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.01 - 6.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.2 (3.88 - 7.67) |
| Median duration [μs] (25-75 percentile) | 765 (164 - 1255) |
Time: 2024-10-11 10:18UTC to 2024-10-11 10:24UTC
Event contains 1342 original clicks, 671 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 436 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.72 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 ( 5 - 6.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.4 (3.77 - 7.94) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 10:24UTC to 2024-10-11 10:30UTC
Event contains 2066 original clicks, 1033 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 787 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.05 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (3.93 - 7.75) |
| Median duration [μs] (25-75 percentile) | 115 (0 - 1000) |
Time: 2024-10-11 11:36UTC to 2024-10-11 11:42UTC
Event contains 514 original clicks, 257 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 178 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.94 |
| Median 10dB Center Frequency [kHz] | 6.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.37 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 (4.15 - 7.92) |
| Median duration [μs] (25-75 percentile) | 96 (0 - 1000) |
Time: 2024-10-11 11:48UTC to 2024-10-11 11:54UTC
Event contains 588 original clicks, 294 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 215 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.05 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (4.11 - 8.28) |
| Median duration [μs] (25-75 percentile) | 123 (0 - 1000) |
Time: 2024-10-11 11:54UTC to 2024-10-11 12:00UTC
Event contains 594 original clicks, 297 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 7.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (6.31 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.92 - 10) |
| Median duration [μs] (25-75 percentile) | 65 (0 - 497) |
Time: 2024-10-11 12:00UTC to 2024-10-11 12:06UTC
Event contains 604 original clicks, 302 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 225 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.16 |
| Median 10dB Center Frequency [kHz] | 8.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (7.42 - 9.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.66 (5.44 - 11.2) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 141) |
Time: 2024-10-11 12:06UTC to 2024-10-11 12:12UTC
Event contains 746 original clicks, 373 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 305 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.69 - 8.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.34 (5.11 - 10.6) |
| Median duration [μs] (25-75 percentile) | 107 (0 - 420) |
Time: 2024-10-11 12:12UTC to 2024-10-11 12:18UTC
Event contains 980 original clicks, 490 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 393 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 7.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.11 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (4.76 - 9.28) |
| Median duration [μs] (25-75 percentile) | 318 (0 - 1000) |
Time: 2024-10-11 12:18UTC to 2024-10-11 12:24UTC
Event contains 2506 original clicks, 1253 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1048 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 7.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.89 - 7.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (4.65 - 9.17) |
| Median duration [μs] (25-75 percentile) | 70 (0 - 482) |
Time: 2024-10-11 12:24UTC to 2024-10-11 12:30UTC
Event contains 2670 original clicks, 1335 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1048 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 8.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (6.69 - 8.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (5.12 - 10.5) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 235) |
Time: 2024-10-11 12:30UTC to 2024-10-11 12:36UTC
Event contains 3716 original clicks, 1858 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1476 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 ( 6.7 - 8.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.24 (5.06 - 10.1) |
| Median duration [μs] (25-75 percentile) | 125 (0 - 483) |
Time: 2024-10-11 12:36UTC to 2024-10-11 12:42UTC
Event contains 4774 original clicks, 2387 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1951 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 7.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.23 - 7.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.97 (4.76 - 9.51) |
| Median duration [μs] (25-75 percentile) | 196 (0 - 499) |
Time: 2024-10-11 12:42UTC to 2024-10-11 12:48UTC
Event contains 4496 original clicks, 2248 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1873 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.14 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (4.77 - 9.4) |
| Median duration [μs] (25-75 percentile) | 315 (42 - 1000) |
Time: 2024-10-11 12:48UTC to 2024-10-11 12:54UTC
Event contains 4808 original clicks, 2404 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2000 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.06 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.28 - 7.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.04 (4.72 - 9.5) |
| Median duration [μs] (25-75 percentile) | 344 (100 - 1000) |
Time: 2024-10-11 12:54UTC to 2024-10-11 13:00UTC
Event contains 3116 original clicks, 1558 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.78 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.14 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (4.66 - 8.55) |
| Median duration [μs] (25-75 percentile) | 76 (0 - 1000) |
Time: 2024-10-11 13:00UTC to 2024-10-11 13:06UTC
Event contains 1390 original clicks, 695 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 470 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (6.06 - 7.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (4.76 - 9.54) |
| Median duration [μs] (25-75 percentile) | 5.2 (0 - 252) |
Time: 2024-10-11 13:36UTC to 2024-10-11 13:42UTC
Event contains 2908 original clicks, 1454 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1173 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.33 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.55 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (5.27 - 9.51) |
| Median duration [μs] (25-75 percentile) | 47 (0 - 480) |
Time: 2024-10-11 13:42UTC to 2024-10-11 13:48UTC
Event contains 6134 original clicks, 3067 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2663 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.43 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.81 - 8.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.53 (5.32 - 9.64) |
| Median duration [μs] (25-75 percentile) | 57 (0 - 1000) |
Time: 2024-10-11 13:48UTC to 2024-10-11 13:54UTC
Event contains 6374 original clicks, 3187 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2728 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.35 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (5.07 - 9.34) |
| Median duration [μs] (25-75 percentile) | 162 (0 - 1000) |
Time: 2024-10-11 13:54UTC to 2024-10-11 14:00UTC
Event contains 8158 original clicks, 4079 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3654 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 8.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.92 - 8.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (5.57 - 10.3) |
| Median duration [μs] (25-75 percentile) | 115 (0 - 1000) |
Time: 2024-10-11 14:00UTC to 2024-10-11 14:06UTC
Event contains 10566 original clicks, 5283 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4730 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.31 |
| Median 10dB Center Frequency [kHz] | 9.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (8.58 - 10) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (6.74 - 11.6) |
| Median duration [μs] (25-75 percentile) | 29 (0 - 493) |
Time: 2024-10-11 14:06UTC to 2024-10-11 14:12UTC
Event contains 13600 original clicks, 6800 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6216 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.38 |
| Median 10dB Center Frequency [kHz] | 9.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (8.64 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (6.93 - 11.7) |
| Median duration [μs] (25-75 percentile) | 29 (0 - 443) |
Time: 2024-10-11 14:12UTC to 2024-10-11 14:18UTC
Event contains 14688 original clicks, 7344 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6878 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.5 |
| Median 10dB Center Frequency [kHz] | 9.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (8.62 - 10.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4 (6.76 - 12) |
| Median duration [μs] (25-75 percentile) | 185 (0 - 1000) |
Time: 2024-10-11 14:18UTC to 2024-10-11 14:24UTC
Event contains 12742 original clicks, 6371 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5884 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.25 |
| Median 10dB Center Frequency [kHz] | 9.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (8.38 - 9.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 ( 6.8 - 11.8) |
| Median duration [μs] (25-75 percentile) | 82 (0 - 1000) |
Time: 2024-10-11 14:24UTC to 2024-10-11 14:30UTC
Event contains 12358 original clicks, 6179 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5811 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.81 |
| Median 10dB Center Frequency [kHz] | 9.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (9.11 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (7.46 - 12) |
| Median duration [μs] (25-75 percentile) | 52 (0 - 1000) |
Time: 2024-10-11 14:30UTC to 2024-10-11 14:36UTC
Event contains 13208 original clicks, 6604 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6240 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.45 |
| Median 10dB Center Frequency [kHz] | 9.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (8.54 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.3 (6.73 - 12.4) |
| Median duration [μs] (25-75 percentile) | 203 (0 - 1000) |
Time: 2024-10-11 14:36UTC to 2024-10-11 14:42UTC
Event contains 16882 original clicks, 8441 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7922 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 10 |
| Median 10dB Center Frequency [kHz] | 10 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (9.05 - 11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.7 (6.87 - 12.8) |
| Median duration [μs] (25-75 percentile) | 321 (3 - 1097) |
Time: 2024-10-11 14:42UTC to 2024-10-11 14:48UTC
Event contains 20348 original clicks, 10174 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9502 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 10.2 |
| Median 10dB Center Frequency [kHz] | 10.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (9.19 - 11.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.58 (6.99 - 12.9) |
| Median duration [μs] (25-75 percentile) | 417 (26 - 1045) |
Time: 2024-10-11 14:48UTC to 2024-10-11 14:54UTC
Event contains 20934 original clicks, 10467 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9795 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 10.4 |
| Median 10dB Center Frequency [kHz] | 10.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (9.42 - 11.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.83 (6.97 - 13.4) |
| Median duration [μs] (25-75 percentile) | 529 (100 - 1436) |
Time: 2024-10-11 14:54UTC to 2024-10-11 15:00UTC
Event contains 20664 original clicks, 10332 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9557 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 10.5 |
| Median 10dB Center Frequency [kHz] | 10.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (9.43 - 11.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.23 (6.62 - 13.5) |
| Median duration [μs] (25-75 percentile) | 472 (100 - 1384) |
Time: 2024-10-11 15:00UTC to 2024-10-11 15:06UTC
Event contains 18194 original clicks, 9097 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8222 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.72 |
| Median 10dB Center Frequency [kHz] | 9.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (8.79 - 10.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.91 (6.45 - 12.7) |
| Median duration [μs] (25-75 percentile) | 368 (10 - 1110) |
Time: 2024-10-11 15:06UTC to 2024-10-11 15:12UTC
Event contains 15844 original clicks, 7922 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7131 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.5 |
| Median 10dB Center Frequency [kHz] | 9.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 ( 8.5 - 10.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 ( 6.4 - 12.6) |
| Median duration [μs] (25-75 percentile) | 253 (0 - 1000) |
Time: 2024-10-11 15:12UTC to 2024-10-11 15:18UTC
Event contains 18978 original clicks, 9489 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8479 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.4 |
| Median 10dB Center Frequency [kHz] | 9.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (8.52 - 10.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.8 (6.34 - 12.3) |
| Median duration [μs] (25-75 percentile) | 287 (5 - 1000) |
Time: 2024-10-11 15:18UTC to 2024-10-11 15:24UTC
Event contains 19952 original clicks, 9976 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9141 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 10.4 |
| Median 10dB Center Frequency [kHz] | 10.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (9.34 - 11.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.12 (6.64 - 13.4) |
| Median duration [μs] (25-75 percentile) | 490 (8 - 1309) |
Time: 2024-10-11 15:24UTC to 2024-10-11 15:30UTC
Event contains 18842 original clicks, 9421 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8614 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.2 |
| Median 3dB Center Frequency [kHz] | 10.9 |
| Median 10dB Center Frequency [kHz] | 10.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (9.81 - 11.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.28 (6.91 - 14.2) |
| Median duration [μs] (25-75 percentile) | 519 (31 - 1313) |
Time: 2024-10-11 15:30UTC to 2024-10-11 15:36UTC
Event contains 16392 original clicks, 8196 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7537 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 10.3 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (9.18 - 11.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.46 (5.79 - 14.1) |
| Median duration [μs] (25-75 percentile) | 441 (5 - 1382) |
Time: 2024-10-11 15:36UTC to 2024-10-11 15:42UTC
Event contains 17938 original clicks, 8969 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8080 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.51 |
| Median 10dB Center Frequency [kHz] | 9.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (7.31 - 9.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.25 (4.57 - 12.8) |
| Median duration [μs] (25-75 percentile) | 375 (5 - 1285) |
Time: 2024-10-11 15:42UTC to 2024-10-11 15:48UTC
Event contains 19420 original clicks, 9710 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8775 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.41 |
| Median 10dB Center Frequency [kHz] | 8.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (6.34 - 8.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.4 (4.24 - 12.2) |
| Median duration [μs] (25-75 percentile) | 443 (13 - 1339) |
Time: 2024-10-11 15:48UTC to 2024-10-11 15:54UTC
Event contains 19142 original clicks, 9571 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8724 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.17 |
| Median 10dB Center Frequency [kHz] | 7.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.16 - 8.22) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.83 (4.26 - 11.1) |
| Median duration [μs] (25-75 percentile) | 560 (26 - 1367) |
Time: 2024-10-11 15:54UTC to 2024-10-11 16:00UTC
Event contains 21890 original clicks, 10945 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9964 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (5.52 - 7.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.09 (3.88 - 10.4) |
| Median duration [μs] (25-75 percentile) | 563 (100 - 1316) |
Time: 2024-10-11 16:00UTC to 2024-10-11 16:06UTC
Event contains 22822 original clicks, 11411 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10416 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 7.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 (5.45 - 7.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.23 (3.85 - 10.5) |
| Median duration [μs] (25-75 percentile) | 620 (107 - 1379) |
Time: 2024-10-11 16:06UTC to 2024-10-11 16:12UTC
Event contains 21682 original clicks, 10841 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9923 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 7.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.57 (5.52 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.92 (3.98 - 10.3) |
| Median duration [μs] (25-75 percentile) | 555 (100 - 1306) |
Time: 2024-10-11 16:12UTC to 2024-10-11 16:18UTC
Event contains 20592 original clicks, 10296 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9379 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 7.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (5.36 - 7.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.99 (3.82 - 10.2) |
| Median duration [μs] (25-75 percentile) | 412 (100 - 1121) |
Time: 2024-10-11 16:18UTC to 2024-10-11 16:24UTC
Event contains 20502 original clicks, 10251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9225 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.34 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.68 (5.12 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.01 (3.78 - 9.82) |
| Median duration [μs] (25-75 percentile) | 420 (100 - 1035) |
Time: 2024-10-11 16:24UTC to 2024-10-11 16:30UTC
Event contains 21594 original clicks, 10797 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9581 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (5.13 - 7.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.96 (3.67 - 9.68) |
| Median duration [μs] (25-75 percentile) | 321 (100 - 1000) |
Time: 2024-10-11 16:30UTC to 2024-10-11 16:36UTC
Event contains 20326 original clicks, 10163 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8959 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.28 |
| Median 10dB Center Frequency [kHz] | 7.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.26 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.87 (3.77 - 9.88) |
| Median duration [μs] (25-75 percentile) | 289 (44 - 1000) |
Time: 2024-10-11 16:36UTC to 2024-10-11 16:42UTC
Event contains 18732 original clicks, 9366 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8300 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (5.36 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.63 (3.85 - 9.44) |
| Median duration [μs] (25-75 percentile) | 214 (16 - 1000) |
Time: 2024-10-11 16:42UTC to 2024-10-11 16:48UTC
Event contains 16652 original clicks, 8326 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7348 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (5.12 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 ( 3.8 - 9.25) |
| Median duration [μs] (25-75 percentile) | 175 (0 - 1000) |
Time: 2024-10-11 16:48UTC to 2024-10-11 16:54UTC
Event contains 15822 original clicks, 7911 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6941 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (5.26 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.66 (3.86 - 9.31) |
| Median duration [μs] (25-75 percentile) | 177 (5 - 1000) |
Time: 2024-10-11 16:54UTC to 2024-10-11 17:00UTC
Event contains 15322 original clicks, 7661 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6449 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (5.31 - 7.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.46 (3.86 - 9.18) |
| Median duration [μs] (25-75 percentile) | 81 (0 - 360) |
Time: 2024-10-11 17:00UTC to 2024-10-11 17:06UTC
Event contains 14550 original clicks, 7275 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6099 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 6.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 ( 5 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 (3.71 - 8.93) |
| Median duration [μs] (25-75 percentile) | 73 (0 - 323) |
Time: 2024-10-11 17:06UTC to 2024-10-11 17:12UTC
Event contains 11596 original clicks, 5798 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4908 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (4.97 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (3.72 - 8.97) |
| Median duration [μs] (25-75 percentile) | 63 (0 - 339) |
Time: 2024-10-11 17:12UTC to 2024-10-11 17:18UTC
Event contains 12272 original clicks, 6136 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5064 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (5.04 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (3.72 - 8.84) |
| Median duration [μs] (25-75 percentile) | 23 (0 - 235) |
Time: 2024-10-11 17:18UTC to 2024-10-11 17:24UTC
Event contains 14272 original clicks, 7136 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5961 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.35 - 6.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.06 (4.04 - 8.97) |
| Median duration [μs] (25-75 percentile) | 65 (0 - 378) |
Time: 2024-10-11 17:24UTC to 2024-10-11 17:30UTC
Event contains 14876 original clicks, 7438 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6018 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.13 - 6.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (3.93 - 8.51) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 342) |
Time: 2024-10-11 17:30UTC to 2024-10-11 17:36UTC
Event contains 15280 original clicks, 7640 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6316 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 6.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 ( 5 - 6.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.13 (3.79 - 8.48) |
| Median duration [μs] (25-75 percentile) | 76 (0 - 430) |
Time: 2024-10-11 17:42UTC to 2024-10-11 17:48UTC
Event contains 10086 original clicks, 5043 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4036 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6 |
| Median 10dB Center Frequency [kHz] | 6.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.28 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.98 (3.97 - 8.52) |
| Median duration [μs] (25-75 percentile) | 44 (0 - 282) |
Time: 2024-10-11 18:00UTC to 2024-10-11 18:06UTC
Event contains 8034 original clicks, 4017 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2948 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.41 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.03 (4.09 - 8.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 18:06UTC to 2024-10-11 18:12UTC
Event contains 9736 original clicks, 4868 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3593 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.65 - 7.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.57 (4.17 - 9.27) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 18:12UTC to 2024-10-11 18:18UTC
Event contains 10310 original clicks, 5155 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3976 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.97 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.18 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 (3.71 - 9.05) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 143) |
Time: 2024-10-11 18:18UTC to 2024-10-11 18:24UTC
Event contains 10434 original clicks, 5217 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3982 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.97 |
| Median 10dB Center Frequency [kHz] | 6.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.14 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.62 (3.72 - 9.13) |
| Median duration [μs] (25-75 percentile) | 36 (0 - 201) |
Time: 2024-10-11 18:24UTC to 2024-10-11 18:30UTC
Event contains 8782 original clicks, 4391 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3601 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.22 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.27 (3.86 - 8.99) |
| Median duration [μs] (25-75 percentile) | 23 (0 - 216) |
Time: 2024-10-11 18:30UTC to 2024-10-11 18:36UTC
Event contains 3926 original clicks, 1963 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1494 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (5.08 - 6.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (3.78 - 8.88) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 128) |
Time: 2024-10-11 18:42UTC to 2024-10-11 18:48UTC
Event contains 2866 original clicks, 1433 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1131 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.17 |
| Median 10dB Center Frequency [kHz] | 6.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (5.39 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (3.78 - 9.19) |
| Median duration [μs] (25-75 percentile) | 57 (0 - 304) |
Time: 2024-10-11 18:48UTC to 2024-10-11 18:54UTC
Event contains 4844 original clicks, 2422 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1714 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (5.17 - 6.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.36 (3.75 - 8.79) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 19:00UTC to 2024-10-11 19:06UTC
Event contains 4922 original clicks, 2461 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1782 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (4.88 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.64 (3.62 - 8.81) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 19:06UTC to 2024-10-11 19:12UTC
Event contains 5008 original clicks, 2504 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1888 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 6.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (5.05 - 6.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.6 (3.66 - 8.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 19:18UTC to 2024-10-11 19:24UTC
Event contains 1372 original clicks, 686 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 519 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.64 |
| Median 10dB Center Frequency [kHz] | 6.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.98 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.07 (4.49 - 9.05) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 19:24UTC to 2024-10-11 19:30UTC
Event contains 442 original clicks, 221 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 159 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 6.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.01 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (3.82 - 8.83) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 19:30UTC to 2024-10-11 19:36UTC
Event contains 1196 original clicks, 598 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 401 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.45 |
| Median 10dB Center Frequency [kHz] | 6.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.63 - 7.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.5 (4.07 - 9.09) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 19:36UTC to 2024-10-11 19:42UTC
Event contains 3266 original clicks, 1633 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1163 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 ( 5.2 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 (3.52 - 8.96) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-10-11 19:54UTC to 2024-10-11 20:00UTC
Event contains 2328 original clicks, 1164 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 789 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.74 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 5 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (3.91 - 8.16) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-10-11 20:06UTC to 2024-10-11 20:12UTC
Event contains 584 original clicks, 292 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.14 - 6.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 ( 3.9 - 7.98) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 20:12UTC to 2024-10-11 20:18UTC
Event contains 814 original clicks, 407 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 274 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 5.3 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (4.06 - 9.54) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-10-11 20:18UTC to 2024-10-11 20:24UTC
Event contains 858 original clicks, 429 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 260 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.19 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (4.18 - 8.36) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 20:48UTC to 2024-10-11 20:54UTC
Event contains 546 original clicks, 273 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 170 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (4.94 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (4.06 - 8.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 20:54UTC to 2024-10-11 21:00UTC
Event contains 926 original clicks, 463 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 312 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.29 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.15 - 7.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 (3.97 - 8.78) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 18) |
Time: 2024-10-11 21:06UTC to 2024-10-11 21:12UTC
Event contains 416 original clicks, 208 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 7.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (6.09 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.39 (4.86 - 9.33) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 132) |
Time: 2024-10-11 21:12UTC to 2024-10-11 21:18UTC
Event contains 1042 original clicks, 521 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 335 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 5.9 - 7.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 (4.54 - 9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 33) |
Time: 2024-10-11 21:18UTC to 2024-10-11 21:24UTC
Event contains 484 original clicks, 242 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 170 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 ( 5.9 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 ( 4.4 - 9.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 21:24UTC to 2024-10-11 21:30UTC
Event contains 868 original clicks, 434 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 301 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.71 |
| Median 10dB Center Frequency [kHz] | 7.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.86 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.12 (5.05 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 21:30UTC to 2024-10-11 21:36UTC
Event contains 582 original clicks, 291 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (5.68 - 7.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.52 - 8.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 21:36UTC to 2024-10-11 21:42UTC
Event contains 742 original clicks, 371 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 213 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 ( 6.6 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (5.02 - 8.99) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 21:42UTC to 2024-10-11 21:48UTC
Event contains 830 original clicks, 415 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 211 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.27 - 7.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 ( 4.9 - 8.85) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 21:48UTC to 2024-10-11 21:54UTC
Event contains 792 original clicks, 396 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.06 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.33 - 6.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (4.06 - 8.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 21:54UTC to 2024-10-11 22:00UTC
Event contains 1290 original clicks, 645 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 366 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.69 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (4.83 - 9.71) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 22:00UTC to 2024-10-11 22:06UTC
Event contains 1076 original clicks, 538 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 266 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.31 |
| Median 10dB Center Frequency [kHz] | 7.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.72 - 7.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 (5.37 - 9.59) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 22:06UTC to 2024-10-11 22:12UTC
Event contains 436 original clicks, 218 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 144 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.93 |
| Median 10dB Center Frequency [kHz] | 9.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (7.84 - 9.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.91 (5.95 - 12.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 22:12UTC to 2024-10-11 22:18UTC
Event contains 502 original clicks, 251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 135 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.03 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.44 (3.84 - 8.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-10-11 22:18UTC to 2024-10-11 22:24UTC
Event contains 1968 original clicks, 984 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 703 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 ( 5.8 - 7.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (4.39 - 8.84) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 151) |
Time: 2024-10-11 22:24UTC to 2024-10-11 22:30UTC
Event contains 7112 original clicks, 3556 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2736 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.28 |
| Median 10dB Center Frequency [kHz] | 7.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (6.38 - 8.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 ( 4.8 - 9.72) |
| Median duration [μs] (25-75 percentile) | 20 (0 - 289) |
Time: 2024-10-11 22:30UTC to 2024-10-11 22:36UTC
Event contains 9632 original clicks, 4816 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3523 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 7.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.17 - 7.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 (4.78 - 9.59) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 203) |
Time: 2024-10-11 22:36UTC to 2024-10-11 22:42UTC
Event contains 8598 original clicks, 4299 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3240 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.48 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.77 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 ( 5.1 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 242) |
Time: 2024-10-11 22:42UTC to 2024-10-11 22:48UTC
Event contains 8636 original clicks, 4318 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3539 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.22 |
| Median 10dB Center Frequency [kHz] | 7.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (6.39 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.49 (4.79 - 10.2) |
| Median duration [μs] (25-75 percentile) | 50 (0 - 351) |
Time: 2024-10-11 22:48UTC to 2024-10-11 22:54UTC
Event contains 6188 original clicks, 3094 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2515 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 8.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.67 (6.67 - 8.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.51 (4.86 - 11.3) |
| Median duration [μs] (25-75 percentile) | 70 (0 - 308) |
Time: 2024-10-11 22:54UTC to 2024-10-11 23:00UTC
Event contains 3464 original clicks, 1732 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1235 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.08 |
| Median 10dB Center Frequency [kHz] | 8.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 ( 7.1 - 8.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.56 (5.48 - 11) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 166) |
Time: 2024-10-11 23:00UTC to 2024-10-11 23:06UTC
Event contains 6298 original clicks, 3149 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2302 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.45 |
| Median 10dB Center Frequency [kHz] | 8.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.52 - 9.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 (5.79 - 11.4) |
| Median duration [μs] (25-75 percentile) | 5.2 (0 - 169) |
Time: 2024-10-11 23:06UTC to 2024-10-11 23:12UTC
Event contains 6950 original clicks, 3475 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2634 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.69 |
| Median 10dB Center Frequency [kHz] | 8.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.66 - 8.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.03 (4.94 - 10.9) |
| Median duration [μs] (25-75 percentile) | 39 (0 - 299) |
Time: 2024-10-11 23:12UTC to 2024-10-11 23:18UTC
Event contains 11498 original clicks, 5749 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5060 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 8.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.72 (6.73 - 9.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.82 (4.83 - 12.4) |
| Median duration [μs] (25-75 percentile) | 151 (0 - 1000) |
Time: 2024-10-11 23:18UTC to 2024-10-11 23:24UTC
Event contains 15060 original clicks, 7530 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6849 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.29 |
| Median 10dB Center Frequency [kHz] | 9.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.05 (6.64 - 9.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.9 (4.66 - 13.1) |
| Median duration [μs] (25-75 percentile) | 266 (21 - 1283) |
Time: 2024-10-11 23:24UTC to 2024-10-11 23:30UTC
Event contains 14634 original clicks, 7317 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.8 |
| Median 10dB Center Frequency [kHz] | 9.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.98 (7.19 - 10.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.61 (4.96 - 13.5) |
| Median duration [μs] (25-75 percentile) | 143 (0 - 1000) |
Time: 2024-10-11 23:30UTC to 2024-10-11 23:36UTC
Event contains 14080 original clicks, 7040 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6483 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.75 |
| Median 10dB Center Frequency [kHz] | 9.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.81 (7.26 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.86 (5.13 - 12.9) |
| Median duration [μs] (25-75 percentile) | 235 (0 - 1335) |
Time: 2024-10-11 23:36UTC to 2024-10-11 23:42UTC
Event contains 13686 original clicks, 6843 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6254 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.3 |
| Median 10dB Center Frequency [kHz] | 9.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.65 (8.03 - 10.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.54 (5.43 - 13) |
| Median duration [μs] (25-75 percentile) | 232 (0 - 1215) |
Time: 2024-10-11 23:42UTC to 2024-10-11 23:48UTC
Event contains 16276 original clicks, 8138 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7360 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.5 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (9.35 - 11.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.61 (6.73 - 13.6) |
| Median duration [μs] (25-75 percentile) | 219 (0 - 1000) |
Time: 2024-10-11 23:48UTC to 2024-10-11 23:54UTC
Event contains 17634 original clicks, 8817 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8016 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.2 |
| Median 3dB Center Frequency [kHz] | 11 |
| Median 10dB Center Frequency [kHz] | 11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (9.82 - 12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.63 (7.21 - 14.3) |
| Median duration [μs] (25-75 percentile) | 355 (0 - 1382) |
Time: 2024-10-11 23:54UTC to 2024-10-12 00:00UTC
Event contains 15112 original clicks, 7556 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6877 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.2 |
| Median 3dB Center Frequency [kHz] | 10.9 |
| Median 10dB Center Frequency [kHz] | 11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (9.91 - 11.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.62 (7.38 - 14.2) |
| Median duration [μs] (25-75 percentile) | 185 (0 - 1000) |
Time: 2024-10-12 00:00UTC to 2024-10-12 00:06UTC
Event contains 12304 original clicks, 6152 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5578 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.2 |
| Median 3dB Center Frequency [kHz] | 11.3 |
| Median 10dB Center Frequency [kHz] | 11.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (10.1 - 12.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.58 (7.02 - 14.6) |
| Median duration [μs] (25-75 percentile) | 130 (0 - 1000) |
Time: 2024-10-12 00:06UTC to 2024-10-12 00:12UTC
Event contains 12416 original clicks, 6208 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5602 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.4 |
| Median 3dB Center Frequency [kHz] | 9.91 |
| Median 10dB Center Frequency [kHz] | 10.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 (8.76 - 11.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.36 (5.41 - 13.6) |
| Median duration [μs] (25-75 percentile) | 188 (0 - 1150) |
Time: 2024-10-12 00:12UTC to 2024-10-12 00:18UTC
Event contains 16854 original clicks, 8427 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7708 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.78 |
| Median 10dB Center Frequency [kHz] | 7.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (5.83 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.67 (4.11 - 10.7) |
| Median duration [μs] (25-75 percentile) | 365 (0 - 1257) |
Time: 2024-10-12 00:18UTC to 2024-10-12 00:24UTC
Event contains 16376 original clicks, 8188 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7291 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (5.16 - 7.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.49 (3.77 - 9.79) |
| Median duration [μs] (25-75 percentile) | 193 (0 - 1000) |
Time: 2024-10-12 00:24UTC to 2024-10-12 00:30UTC
Event contains 18050 original clicks, 9025 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7790 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.7 (4.77 - 7.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.96 (3.53 - 9.56) |
| Median duration [μs] (25-75 percentile) | 274 (29 - 1000) |
Time: 2024-10-12 00:36UTC to 2024-10-12 00:42UTC
Event contains 15538 original clicks, 7769 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6774 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.76 (4.56 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.89 (3.46 - 8.95) |
| Median duration [μs] (25-75 percentile) | 190 (13 - 477) |
Time: 2024-10-12 06:48UTC to 2024-10-12 06:54UTC
Event contains 418 original clicks, 209 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 118 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.51 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.78 - 7.28) |
| Median duration [μs] (25-75 percentile) | 85 (0 - 433) |
Time: 2024-10-12 07:00UTC to 2024-10-12 07:06UTC
Event contains 572 original clicks, 286 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.8 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.13 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 ( 4.2 - 7.6) |
| Median duration [μs] (25-75 percentile) | 150 (0 - 1000) |
Time: 2024-10-12 07:06UTC to 2024-10-12 07:12UTC
Event contains 432 original clicks, 216 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 124 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (5.18 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.91 (4.19 - 7.91) |
| Median duration [μs] (25-75 percentile) | 121 (1e+0 - 1000) |
Time: 2024-10-12 07:30UTC to 2024-10-12 07:36UTC
Event contains 550 original clicks, 275 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (5.19 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (4.06 - 8.27) |
| Median duration [μs] (25-75 percentile) | 216 (26 - 1000) |
Time: 2024-10-12 07:54UTC to 2024-10-12 08:00UTC
Event contains 796 original clicks, 398 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 262 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.27 - 6.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.32 (4.19 - 7.94) |
| Median duration [μs] (25-75 percentile) | 274 (31 - 1000) |
Time: 2024-10-12 08:18UTC to 2024-10-12 08:24UTC
Event contains 978 original clicks, 489 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 310 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.69 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (4.97 - 6.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (3.97 - 7.86) |
| Median duration [μs] (25-75 percentile) | 285 (45 - 1000) |
Time: 2024-10-12 08:30UTC to 2024-10-12 08:36UTC
Event contains 1058 original clicks, 529 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 341 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.85 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (5.12 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (4.09 - 7.94) |
| Median duration [μs] (25-75 percentile) | 425 (112 - 1074) |
Time: 2024-10-12 08:36UTC to 2024-10-12 08:42UTC
Event contains 700 original clicks, 350 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 243 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (5.47 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 ( 4.3 - 8.55) |
| Median duration [μs] (25-75 percentile) | 112 (0 - 422) |
Time: 2024-10-12 08:42UTC to 2024-10-12 08:48UTC
Event contains 528 original clicks, 264 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 151 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.08 |
| Median 10dB Center Frequency [kHz] | 6.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.47 - 6.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.47 (4.35 - 8.27) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 44) |
Time: 2024-10-12 08:48UTC to 2024-10-12 08:54UTC
Event contains 504 original clicks, 252 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 172 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.2 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (5.51 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.99 (4.18 - 8.69) |
| Median duration [μs] (25-75 percentile) | 5.2 (0 - 100) |
Time: 2024-10-12 09:00UTC to 2024-10-12 09:06UTC
Event contains 896 original clicks, 448 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 287 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 ( 5.3 - 6.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 (4.56 - 8.72) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 387) |
Time: 2024-10-12 09:18UTC to 2024-10-12 09:24UTC
Event contains 1176 original clicks, 588 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 338 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.22 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 (4.26 - 7.92) |
| Median duration [μs] (25-75 percentile) | 652 (139 - 1444) |
Time: 2024-10-12 09:24UTC to 2024-10-12 09:30UTC
Event contains 784 original clicks, 392 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.74 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.19 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.33 (4.27 - 7.73) |
| Median duration [μs] (25-75 percentile) | 551 (100 - 1258) |
Time: 2024-10-12 09:54UTC to 2024-10-12 10:00UTC
Event contains 984 original clicks, 492 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 284 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.8 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.12 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.24 - 7.44) |
| Median duration [μs] (25-75 percentile) | 895 (334 - 1538) |
Time: 2024-10-12 10:12UTC to 2024-10-12 10:18UTC
Event contains 1144 original clicks, 572 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 363 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.56 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (4.74 - 8.14) |
| Median duration [μs] (25-75 percentile) | 600 (121 - 1392) |
Time: 2024-10-12 10:18UTC to 2024-10-12 10:24UTC
Event contains 1676 original clicks, 838 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 584 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.57 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.95 - 7.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (4.72 - 8.7) |
| Median duration [μs] (25-75 percentile) | 936 (407 - 1638) |
Time: 2024-10-12 10:24UTC to 2024-10-12 10:30UTC
Event contains 2456 original clicks, 1228 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 913 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 6.1 - 7.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.49 (4.87 - 8.68) |
| Median duration [μs] (25-75 percentile) | 1077 (1000 - 1757) |
Time: 2024-10-12 10:36UTC to 2024-10-12 10:42UTC
Event contains 2086 original clicks, 1043 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 693 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.82 - 7.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (4.48 - 8.29) |
| Median duration [μs] (25-75 percentile) | 1655 (1108 - 2252) |
Time: 2024-10-12 10:54UTC to 2024-10-12 11:00UTC
Event contains 2660 original clicks, 1330 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 933 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.11 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (4.13 - 8.07) |
| Median duration [μs] (25-75 percentile) | 1298 (1000 - 2044) |
Time: 2024-10-12 11:00UTC to 2024-10-12 11:06UTC
Event contains 1852 original clicks, 926 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.77 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.06 - 6.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (4.07 - 8.16) |
| Median duration [μs] (25-75 percentile) | 772 (211 - 1369) |
Time: 2024-10-12 11:06UTC to 2024-10-12 11:12UTC
Event contains 1042 original clicks, 521 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 350 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.43 - 7.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (4.28 - 8.82) |
| Median duration [μs] (25-75 percentile) | 156 (18 - 1000) |
Time: 2024-10-12 11:12UTC to 2024-10-12 11:18UTC
Event contains 1574 original clicks, 787 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 590 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.51 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (5.77 - 7.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 (4.33 - 9.44) |
| Median duration [μs] (25-75 percentile) | 190 (3 - 1000) |
Time: 2024-10-12 11:18UTC to 2024-10-12 11:24UTC
Event contains 1458 original clicks, 729 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 513 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (5.62 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (4.37 - 8.79) |
| Median duration [μs] (25-75 percentile) | 78 (0 - 467) |
Time: 2024-10-12 11:24UTC to 2024-10-12 11:30UTC
Event contains 1434 original clicks, 717 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 464 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.46 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (4.21 - 8.51) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 326) |
Time: 2024-10-12 11:30UTC to 2024-10-12 11:36UTC
Event contains 1522 original clicks, 761 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 521 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 ( 6.2 - 7.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (4.92 - 8.87) |
| Median duration [μs] (25-75 percentile) | 86 (0 - 1000) |
Time: 2024-10-12 11:36UTC to 2024-10-12 11:42UTC
Event contains 1726 original clicks, 863 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 598 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.96 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.27 - 7.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.94 (5.17 - 9.36) |
| Median duration [μs] (25-75 percentile) | 172 (11 - 477) |
Time: 2024-10-12 11:42UTC to 2024-10-12 11:48UTC
Event contains 452 original clicks, 226 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 131 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.42 - 6.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.91 (4.39 - 7.32) |
| Median duration [μs] (25-75 percentile) | 162 (34 - 1000) |
Time: 2024-10-12 12:06UTC to 2024-10-12 12:12UTC
Event contains 496 original clicks, 248 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 150 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.5 |
| Median 10dB Center Frequency [kHz] | 5.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.989 (4.91 - 5.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.7 (4.13 - 6.98) |
| Median duration [μs] (25-75 percentile) | 643 (182 - 1180) |
Time: 2024-10-12 12:12UTC to 2024-10-12 12:18UTC
Event contains 2262 original clicks, 1131 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 762 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 5.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.27 - 6.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.84 (4.24 - 7.45) |
| Median duration [μs] (25-75 percentile) | 1109 (1000 - 1809) |
Time: 2024-10-12 12:18UTC to 2024-10-12 12:24UTC
Event contains 2816 original clicks, 1408 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 979 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.46 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3 (4.59 - 7.46) |
| Median duration [μs] (25-75 percentile) | 1314 (1000 - 2177) |
Time: 2024-10-12 12:24UTC to 2024-10-12 12:30UTC
Event contains 2520 original clicks, 1260 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 908 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.45 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.01 (4.54 - 7.56) |
| Median duration [μs] (25-75 percentile) | 1258 (1000 - 1958) |
Time: 2024-10-12 12:30UTC to 2024-10-12 12:36UTC
Event contains 1656 original clicks, 828 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 588 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.19 - 6.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (4.14 - 8.38) |
| Median duration [μs] (25-75 percentile) | 643 (186 - 1241) |
Time: 2024-10-12 12:36UTC to 2024-10-12 12:42UTC
Event contains 1292 original clicks, 646 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 445 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.42 - 6.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (4.27 - 8.71) |
| Median duration [μs] (25-75 percentile) | 425 (100 - 1181) |
Time: 2024-10-12 12:48UTC to 2024-10-12 12:54UTC
Event contains 718 original clicks, 359 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 244 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.28 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.1 (3.82 - 8.79) |
| Median duration [μs] (25-75 percentile) | 199 (46 - 1000) |
Time: 2024-10-12 12:54UTC to 2024-10-12 13:00UTC
Event contains 1558 original clicks, 779 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 556 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 ( 6 - 7.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 (4.48 - 9.7) |
| Median duration [μs] (25-75 percentile) | 342 (100 - 1021) |
Time: 2024-10-12 13:00UTC to 2024-10-12 13:06UTC
Event contains 1360 original clicks, 680 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 493 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 6.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.74 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 (3.95 - 9.74) |
| Median duration [μs] (25-75 percentile) | 623 (141 - 1259) |
Time: 2024-10-12 13:42UTC to 2024-10-12 13:48UTC
Event contains 568 original clicks, 284 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 202 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.58 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.1 (4.04 - 8.95) |
| Median duration [μs] (25-75 percentile) | 830 (163 - 1436) |
Time: 2024-10-12 13:48UTC to 2024-10-12 13:54UTC
Event contains 666 original clicks, 333 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 246 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.2 |
| Median 3dB Center Frequency [kHz] | 5.94 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.17 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (4.06 - 7.92) |
| Median duration [μs] (25-75 percentile) | 786 (227 - 1715) |
Time: 2024-10-12 19:00UTC to 2024-10-12 19:06UTC
Event contains 2912 original clicks, 1456 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1298 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.6 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.46 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.53 (4.16 - 8.11) |
| Median duration [μs] (25-75 percentile) | 1701 (1000 - 2461) |
Time: 2024-10-12 19:48UTC to 2024-10-12 19:54UTC
Event contains 816 original clicks, 408 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 300 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.91 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (5.29 - 6.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (4.04 - 8.17) |
| Median duration [μs] (25-75 percentile) | 209 (47 - 1000) |
Time: 2024-10-12 19:54UTC to 2024-10-12 20:00UTC
Event contains 1360 original clicks, 680 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 547 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.58 |
| Median 10dB Center Frequency [kHz] | 5.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (4.94 - 6.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (3.85 - 7.69) |
| Median duration [μs] (25-75 percentile) | 639 (154 - 1412) |
Time: 2024-10-12 20:42UTC to 2024-10-12 20:48UTC
Event contains 702 original clicks, 351 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 225 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.01 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.43 - 7.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 ( 5 - 9.42) |
| Median duration [μs] (25-75 percentile) | 102 (10 - 1000) |
Time: 2024-10-12 20:48UTC to 2024-10-12 20:54UTC
Event contains 1050 original clicks, 525 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 348 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.37 - 7.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (5.13 - 9.45) |
| Median duration [μs] (25-75 percentile) | 116 (16 - 495) |
Time: 2024-10-12 20:54UTC to 2024-10-12 21:00UTC
Event contains 756 original clicks, 378 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 265 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.65 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (4.71 - 8.72) |
| Median duration [μs] (25-75 percentile) | 297 (34 - 1184) |
Time: 2024-10-12 21:00UTC to 2024-10-12 21:06UTC
Event contains 964 original clicks, 482 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 360 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.33 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (4.14 - 8.01) |
| Median duration [μs] (25-75 percentile) | 744 (184 - 1309) |
Time: 2024-10-12 22:00UTC to 2024-10-12 22:06UTC
Event contains 740 original clicks, 370 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 235 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.51 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.73 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.91 (5.53 - 10) |
| Median duration [μs] (25-75 percentile) | 130 (22 - 1000) |
Time: 2024-10-12 22:06UTC to 2024-10-12 22:12UTC
Event contains 586 original clicks, 293 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 201 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.39 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.75 - 8.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 ( 5.4 - 9.9) |
| Median duration [μs] (25-75 percentile) | 104 (21 - 464) |
Time: 2024-10-12 23:00UTC to 2024-10-12 23:06UTC
Event contains 426 original clicks, 213 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 88 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.6 |
| Median 3dB Center Frequency [kHz] | 9.03 |
| Median 10dB Center Frequency [kHz] | 9.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (8.04 - 9.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.01 (6.85 - 12.3) |
| Median duration [μs] (25-75 percentile) | 207 (100 - 1000) |
Time: 2024-10-12 23:18UTC to 2024-10-12 23:24UTC
Event contains 566 original clicks, 283 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 125 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 9.05 |
| Median 10dB Center Frequency [kHz] | 10.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (7.83 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.87 (5.88 - 12.9) |
| Median duration [μs] (25-75 percentile) | 240 (100 - 1000) |
Time: 2024-10-13 00:30UTC to 2024-10-13 00:36UTC
Event contains 470 original clicks, 235 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 45 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12 |
| Median 3dB Center Frequency [kHz] | 9.86 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.757 (9.56 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.28 (9.03 - 11.7) |
| Median duration [μs] (25-75 percentile) | 203 (100 - 414) |
Time: 2024-10-13 00:36UTC to 2024-10-13 00:42UTC
Event contains 562 original clicks, 281 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 47 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12 |
| Median 3dB Center Frequency [kHz] | 11.6 |
| Median 10dB Center Frequency [kHz] | 11.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.568 (11.2 - 11.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.2 (10.6 - 12.2) |
| Median duration [μs] (25-75 percentile) | 65 (34 - 185) |
Time: 2024-10-13 00:42UTC to 2024-10-13 00:48UTC
Event contains 466 original clicks, 233 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 51 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.8 |
| Median 3dB Center Frequency [kHz] | 12.3 |
| Median 10dB Center Frequency [kHz] | 11.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.566 (12.1 - 12.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.36 (10.8 - 12.9) |
| Median duration [μs] (25-75 percentile) | 83 (42 - 1000) |
Time: 2024-10-13 00:48UTC to 2024-10-13 00:54UTC
Event contains 404 original clicks, 202 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 35 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 13.2 |
| Median 3dB Center Frequency [kHz] | 12.2 |
| Median 10dB Center Frequency [kHz] | 12.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.579 ( 12 - 12.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.21 (11.7 - 12.9) |
| Median duration [μs] (25-75 percentile) | 628 (100 - 1113) |
Time: 2024-10-13 00:54UTC to 2024-10-13 01:00UTC
Event contains 786 original clicks, 393 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 58 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.3 |
| Median 10dB Center Frequency [kHz] | 10.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.564 ( 10 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.21 (9.61 - 11) |
| Median duration [μs] (25-75 percentile) | 366 (43 - 1000) |
Time: 2024-10-13 01:00UTC to 2024-10-13 01:06UTC
Event contains 732 original clicks, 366 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 58 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.7 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.659 (10.2 - 11.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.71 (9.02 - 11.9) |
| Median duration [μs] (25-75 percentile) | 123 (42 - 1000) |
Time: 2024-10-13 01:06UTC to 2024-10-13 01:12UTC
Event contains 684 original clicks, 342 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 71 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12 |
| Median 3dB Center Frequency [kHz] | 11.1 |
| Median 10dB Center Frequency [kHz] | 11.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.586 (10.7 - 11.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.21 (10.1 - 12.3) |
| Median duration [μs] (25-75 percentile) | 123 (40 - 1000) |
Time: 2024-10-13 01:12UTC to 2024-10-13 01:18UTC
Event contains 498 original clicks, 249 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 95 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.79 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 ( 9.2 - 10.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (6.76 - 11.4) |
| Median duration [μs] (25-75 percentile) | 636 (120 - 1225) |
Time: 2024-10-13 03:48UTC to 2024-10-13 03:54UTC
Event contains 508 original clicks, 254 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 164 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.87 |
| Median 10dB Center Frequency [kHz] | 5.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.22 - 6.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.48 (4.41 - 6.95) |
| Median duration [μs] (25-75 percentile) | 765 (280 - 1403) |
Time: 2024-10-13 08:06UTC to 2024-10-13 08:12UTC
Event contains 484 original clicks, 242 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 151 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.77 - 6.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.67 (4.97 - 7.5) |
| Median duration [μs] (25-75 percentile) | 738 (194 - 1434) |
Time: 2024-10-13 08:18UTC to 2024-10-13 08:24UTC
Event contains 928 original clicks, 464 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 271 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.949 ( 5.7 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.32 (4.92 - 7.28) |
| Median duration [μs] (25-75 percentile) | 1074 (472 - 1671) |
Time: 2024-10-13 08:24UTC to 2024-10-13 08:30UTC
Event contains 520 original clicks, 260 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 145 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.964 (5.71 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.6 ( 5 - 7.29) |
| Median duration [μs] (25-75 percentile) | 626 (107 - 1306) |
Time: 2024-10-13 09:36UTC to 2024-10-13 09:42UTC
Event contains 648 original clicks, 324 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 5.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.27 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.5 (4.51 - 7.29) |
| Median duration [μs] (25-75 percentile) | 485 (100 - 1000) |
Time: 2024-10-13 09:42UTC to 2024-10-13 09:48UTC
Event contains 656 original clicks, 328 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 157 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.944 (5.62 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.38 (4.69 - 7.25) |
| Median duration [μs] (25-75 percentile) | 282 (47 - 1000) |
Time: 2024-10-13 09:48UTC to 2024-10-13 09:54UTC
Event contains 794 original clicks, 397 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 181 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.922 ( 5.5 - 6.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.39 (4.71 - 7.25) |
| Median duration [μs] (25-75 percentile) | 547 (141 - 1045) |
Time: 2024-10-13 09:54UTC to 2024-10-13 10:00UTC
Event contains 1108 original clicks, 554 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 255 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 5.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.97 (5.32 - 6.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.38 (4.55 - 7.01) |
| Median duration [μs] (25-75 percentile) | 555 (129 - 1111) |
Time: 2024-10-13 10:00UTC to 2024-10-13 10:06UTC
Event contains 1682 original clicks, 841 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 486 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.56 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.55 (4.73 - 7.32) |
| Median duration [μs] (25-75 percentile) | 851 (280 - 1365) |
Time: 2024-10-13 10:06UTC to 2024-10-13 10:12UTC
Event contains 1752 original clicks, 876 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 584 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.978 (5.43 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.38 (4.59 - 7.19) |
| Median duration [μs] (25-75 percentile) | 1151 (1000 - 1800) |
Time: 2024-10-13 10:12UTC to 2024-10-13 10:18UTC
Event contains 1524 original clicks, 762 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 531 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.73 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.82 - 7.45) |
| Median duration [μs] (25-75 percentile) | 1376 (1000 - 2151) |
Time: 2024-10-13 15:48UTC to 2024-10-13 15:54UTC
Event contains 1142 original clicks, 571 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 303 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.34 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.17 (3.92 - 8.39) |
| Median duration [μs] (25-75 percentile) | 1001 (199 - 1983) |
Time: 2024-10-13 15:54UTC to 2024-10-13 16:00UTC
Event contains 4526 original clicks, 2263 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1398 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.64 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (4.88 - 6.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (3.64 - 8.43) |
| Median duration [μs] (25-75 percentile) | 568 (141 - 1154) |
# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
#dbDisconnect(dbFile)
After additional filtering based on median peak frequency, 362 events events of 1820 original events remain.